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

Diff for /src/usr.bin/cvs/util.c between version 1.40 and 1.41

version 1.40, 2005/07/24 17:12:25 version 1.41, 2005/07/24 17:33:09
Line 572 
Line 572 
                 if (ent->d_type == DT_DIR) {                  if (ent->d_type == DT_DIR) {
                         if (cvs_remove_dir(fpath) == -1)                          if (cvs_remove_dir(fpath) == -1)
                                 goto done;                                  goto done;
                 } else if ((unlink(fpath) == -1) && (errno != ENOENT)) {                  } else if ((cvs_unlink(fpath) == -1) && (errno != ENOENT))
                         cvs_log(LP_ERRNO, "failed to remove '%s'", fpath);  
                         goto done;                          goto done;
                 }  
         }          }
   
   

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41