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

Diff for /src/usr.bin/cvs/repository.c between version 1.18 and 1.19

version 1.18, 2008/02/03 22:50:28 version 1.19, 2008/02/03 23:34:41
Line 108 
Line 108 
                 (void)xsnprintf(rpath, MAXPATHLEN, "%s/%s", dir, dp->d_name);                  (void)xsnprintf(rpath, MAXPATHLEN, "%s/%s", dir, dp->d_name);
   
                 if (!TAILQ_EMPTY(&checkout_ign_pats)) {                  if (!TAILQ_EMPTY(&checkout_ign_pats)) {
                           if ((s = strrchr(fpath, ',')) != NULL)
                                   *s = '\0';
                         if (cvs_file_chkign(fpath))                          if (cvs_file_chkign(fpath))
                                 continue;                                  continue;
                           if (s != NULL)
                                   *s = ',';
                 }                  }
   
                 /*                  /*

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19