Ignore:
Timestamp:
Aug 28, 2010, 12:13:37 AM (13 years ago)
Author:
Peter Johansson
Message:

using errno_error. closes #410

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Directory.cc

    r1137 r1186  
    7878        case SVN::uptodate:
    7979          struct stat nodestat;                // C api from sys/stat.h
    80           lstat(fullpath.c_str(),&nodestat);   // C api from sys/stat.h
     80          lstat(fullpath,&nodestat);   // C api from sys/stat.h
    8181          if (S_ISDIR(nodestat.st_mode))       // C api from sys/stat.h
    8282            daughters_.push_back(new Directory(level_+1,fullpath,local_path()));
Note: See TracChangeset for help on using the changeset viewer.