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

Diff for /src/usr.bin/cvs/rcs.c between version 1.244 and 1.245

version 1.244, 2008/02/02 16:59:48 version 1.245, 2008/02/03 16:59:11
Line 2657 
Line 2657 
                 rev = rcs_sym_getrev(rfp, revstr);                  rev = rcs_sym_getrev(rfp, revstr);
         }          }
   
         /*  
          * Although many cvs commands do have option -f to force head  
          * if a revision is not found, GNU cvs simply fatals with  
          * unknown symbols.  If we reach this point rev is still NULL,  
          * do the same...  
          */  
         if (rev == NULL)          if (rev == NULL)
                 fatal("no such tag %s", revstr);                  return (NULL);
   
         /*          /*
          * If it was not a branch, thats ok the symbolic           * If it was not a branch, thats ok the symbolic

Legend:
Removed from v.1.244  
changed lines
  Added in v.1.245