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

Diff for /src/usr.bin/cvs/util.c between version 1.99 and 1.100

version 1.99, 2007/01/19 23:55:31 version 1.100, 2007/01/20 01:07:51
Line 934 
Line 934 
                 if (lstr == NULL)                  if (lstr == NULL)
                         lstr = RCS_HEAD_INIT;                          lstr = RCS_HEAD_INIT;
   
                 lnum = rcs_translate_tag(lstr, file);                  if ((lnum = rcs_translate_tag(lstr, file)) == NULL)
                           fatal("cvs_revision_select: could not translate tag `%s'", lstr);
   
                 if (rstr != NULL) {                  if (rstr != NULL) {
                         rnum = rcs_translate_tag(rstr, file);                          if ((rnum = rcs_translate_tag(rstr, file)) == NULL)
                                   fatal("cvs_revision_select: could not translate tag `%s'", rstr);
                 } else {                  } else {
                         rnum = rcsnum_alloc();                          rnum = rcsnum_alloc();
                         rcsnum_cpy(file->rf_head, rnum, 0);                          rcsnum_cpy(file->rf_head, rnum, 0);

Legend:
Removed from v.1.99  
changed lines
  Added in v.1.100