[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.88 and 1.89

version 1.88, 2005/06/14 15:27:31 version 1.89, 2005/06/17 14:58:23
Line 1165 
Line 1165 
         struct dirent *dp;          struct dirent *dp;
         char fpath[MAXPATHLEN];          char fpath[MAXPATHLEN];
         CVSENTRIES *entf;          CVSENTRIES *entf;
           CVSFILE *cfp;
   
         pwd = (!strcmp(path, "."));          pwd = (!strcmp(path, "."));
   
Line 1191 
Line 1192 
                                 cvs_log(LP_ERRNO, "%s", fpath);                                  cvs_log(LP_ERRNO, "%s", fpath);
                                 continue;                                  continue;
                         }                          }
   
                           cfp = cvs_file_find(cvs_files, fpath);
                           if (cfp == NULL)
                                   continue;
   
                         if (cvs_file_prune(fpath)) {                          if (cvs_file_prune(fpath)) {
                                 empty--;                                  empty--;

Legend:
Removed from v.1.88  
changed lines
  Added in v.1.89