[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.91 and 1.92

version 1.91, 2005/07/01 08:59:09 version 1.92, 2005/07/05 16:55:30
Line 1107 
Line 1107 
                 }                  }
         } else {          } else {
                 if (ent == NULL) {                  if (ent == NULL) {
                         cvs_log(LP_ERR, "no Entry and no file for `%s'",                          /* assume it is a file and unknown */
                             CVS_FILE_NAME(cfp));                          cfp->cf_cvstat = CVS_FST_UNKNOWN;
                         cvs_file_free(cfp);                          cfp->cf_type = DT_REG;
                         return (NULL);  
                 } else {                  } else {
                         if (ent->ce_type == CVS_ENT_FILE)                          if (ent->ce_type == CVS_ENT_FILE)
                                 cfp->cf_type = DT_REG;                                  cfp->cf_type = DT_REG;

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.92