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

Diff for /src/usr.bin/cvs/diff.c between version 1.114 and 1.115

version 1.114, 2007/01/15 04:21:38 version 1.115, 2007/01/20 01:07:51
Line 192 
Line 192 
         }          }
   
         if (rev1 != NULL)          if (rev1 != NULL)
                 diff_rev1 = rcs_translate_tag(rev1, cf->file_rcs);                  if ((diff_rev1 = rcs_translate_tag(rev1, cf->file_rcs)) == NULL)
                           fatal("cvs_diff_local: could not translate tag `%s'", rev1);
         if (rev2 != NULL)          if (rev2 != NULL)
                 diff_rev2 = rcs_translate_tag(rev2, cf->file_rcs);                  if ((diff_rev2 = rcs_translate_tag(rev2, cf->file_rcs)) == NULL)
                           fatal("cvs_diff_local: could not translate tag `%s'", rev2);
   
         diff_file = cf->file_path;          diff_file = cf->file_path;
         cvs_printf("Index: %s\n%s\nRCS file: %s\n", cf->file_path,          cvs_printf("Index: %s\n%s\nRCS file: %s\n", cf->file_path,

Legend:
Removed from v.1.114  
changed lines
  Added in v.1.115