[BACK]Return to file.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/file.c between version 1.183 and 1.184

version 1.183, 2007/01/31 21:07:35 version 1.184, 2007/02/07 23:47:56
Line 415 
Line 415 
                         /*                          /*
                          * nfs and afs will show d_type as DT_UNKNOWN                           * nfs and afs will show d_type as DT_UNKNOWN
                          * for files and/or directories so when we encounter                           * for files and/or directories so when we encounter
                          * this we call stat() on the path to be sure.                           * this we call lstat() on the path to be sure.
                          */                           */
                         if (dp->d_type == DT_UNKNOWN) {                          if (dp->d_type == DT_UNKNOWN) {
                                 if (stat(fpath, &st) == -1)                                  if (lstat(fpath, &st) == -1)
                                         fatal("'%s': %s", fpath,                                          fatal("'%s': %s", fpath,
                                             strerror(errno));                                              strerror(errno));
   

Legend:
Removed from v.1.183  
changed lines
  Added in v.1.184