- Timestamp:
- Jan 15, 2006, 2:34:04 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/rmdirhier.cc
r51 r55 53 53 while ((entry=readdir(dp)) != NULL) { 54 54 struct stat buf; 55 if (entry->d_name[0] == '.') 55 if ((std::string(entry->d_name) == ".") || 56 (std::string(entry->d_name) == "..")) 56 57 continue; 57 58 stat(entry->d_name,&buf);
Note: See TracChangeset
for help on using the changeset viewer.