[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.171 and 1.172

version 1.171, 2007/01/19 23:23:21 version 1.172, 2007/01/20 00:58:19
Line 674 
Line 674 
         } else          } else
                 cf->file_rcs = NULL;                  cf->file_rcs = NULL;
   
         if (tag != NULL && cf->file_rcs != NULL)          if (tag != NULL && cf->file_rcs != NULL) {
                 cf->file_rcsrev = rcs_translate_tag(tag, cf->file_rcs);                  if ((cf->file_rcsrev = rcs_translate_tag(tag, cf->file_rcs)) == NULL)
         else if (cf->file_ent != NULL && cf->file_ent->ce_tag != NULL) {                          fatal("cvs_file_classify:  could not translate tag `%s'", tag);
           } else if (cf->file_ent != NULL && cf->file_ent->ce_tag != NULL) {
                 cf->file_rcsrev = rcsnum_alloc();                  cf->file_rcsrev = rcsnum_alloc();
                 rcsnum_cpy(cf->file_ent->ce_rev, cf->file_rcsrev, 0);                  rcsnum_cpy(cf->file_ent->ce_rev, cf->file_rcsrev, 0);
         } else if (cf->file_rcs != NULL)          } else if (cf->file_rcs != NULL)

Legend:
Removed from v.1.171  
changed lines
  Added in v.1.172