[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.23 and 1.24

version 1.23, 2004/08/06 14:55:56 version 1.24, 2004/08/06 20:12:15
Line 321 
Line 321 
         do {          do {
                 sp = strchr(pp, '/');                  sp = strchr(pp, '/');
                 if (sp != NULL)                  if (sp != NULL)
                         *sp = '\0';                          *(sp++) = '\0';
   
                 /* special case */                  /* special case */
                 if (*pp == '.') {                  if (*pp == '.') {
Line 349 
Line 349 
                 pp = sp;                  pp = sp;
         } while (sp != NULL);          } while (sp != NULL);
   
         return (NULL);          return (cf);
 }  }
   
   
Line 455 
Line 455 
                         dp += ent->d_reclen;                          dp += ent->d_reclen;
   
                         if ((flags & CF_IGNORE) && cvs_file_chkign(ent->d_name))                          if ((flags & CF_IGNORE) && cvs_file_chkign(ent->d_name))
                                   continue;
   
                           if ((flags & CF_NOSYMS) && (ent->d_type == DT_LNK))
                                 continue;                                  continue;
   
                         snprintf(pbuf, sizeof(pbuf), "%s/%s",                          snprintf(pbuf, sizeof(pbuf), "%s/%s",

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24