I wrote:

>I have attached a patch and a script that will reproduce the problem 
>and verify the fix.  

The previous patch causes a comment in the code to be invalid.  This 
new patch fixes the comment as well.  Disregard the earlier patch.

-- 
Stephen Rasku                   E-mail: [EMAIL PROTECTED]
Senior Software Engineer        Web:    http://www.pop-star.net/
TGI Technologies
Index: src/rcs.c
===================================================================
RCS file: /ash/cvsroot/tools/cvs/src/rcs.c,v
retrieving revision 1.1.1.1
diff -b -u -r1.1.1.1 rcs.c
--- src/rcs.c   2001/02/04 20:23:40     1.1.1.1
+++ src/rcs.c   2001/03/15 00:42:54
@@ -2485,7 +2487,7 @@
  * -- If tag is a branch tag, returns the branch number, not
  *    the revision of the head of the branch.
  * If tag or revision is not valid or does not exist in file,
- * exit with error.
+ * return NULL.
  */
 char *
 RCS_tag2rev (rcs, tag)
@@ -2564,8 +2566,7 @@
     if (rev)
         return rev;
 
-    error (1, 0, "tag `%s' does not exist", tag);
-    /* NOT REACHED -- error (1 ... ) does not return here */
+    error (0, 0, "tag `%s' does not exist", tag);
     return 0;
 }
 

Reply via email to