Changeset 1186 for trunk/lib/Directory.cc
- Timestamp:
- Aug 28, 2010, 12:13:37 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Directory.cc
r1137 r1186 78 78 case SVN::uptodate: 79 79 struct stat nodestat; // C api from sys/stat.h 80 lstat(fullpath .c_str(),&nodestat); // C api from sys/stat.h80 lstat(fullpath,&nodestat); // C api from sys/stat.h 81 81 if (S_ISDIR(nodestat.st_mode)) // C api from sys/stat.h 82 82 daughters_.push_back(new Directory(level_+1,fullpath,local_path()));
Note: See TracChangeset
for help on using the changeset viewer.