[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.65 and 1.66

version 1.65, 2005/04/18 22:28:41 version 1.66, 2005/04/19 00:32:55
Line 919 
Line 919 
                             CVS_FILE_NAME(cfp));                              CVS_FILE_NAME(cfp));
                         cvs_file_free(cfp);                          cvs_file_free(cfp);
                         return (NULL);                          return (NULL);
                 } else                  } else {
                           if (ent->ce_type == CVS_ENT_FILE)
                                   cfp->cf_type = DT_REG;
                           else if (ent->ce_type == CVS_ENT_DIR)
                                   cfp->cf_type = DT_DIR;
                           else
                                   cvs_log(LP_WARN, "unknown ce_type %d",
                                       ent->ce_type);
                         cfp->cf_cvstat = CVS_FST_LOST;                          cfp->cf_cvstat = CVS_FST_LOST;
                   }
         }          }
   
         if (ent != NULL) {          if (ent != NULL) {

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66