Do not print "retrieving revision 1.13" while doing cvs diff.
authorbluhm <bluhm@openbsd.org>
Mon, 23 Oct 2023 21:59:00 +0000 (21:59 +0000)
committerbluhm <bluhm@openbsd.org>
Mon, 23 Oct 2023 21:59:00 +0000 (21:59 +0000)
Provide shorter diffs without unnecessary debugging output.
Note that this affects cvs installed on the server side.

OK deraadt@

gnu/usr.bin/cvs/src/rcscmds.c

index 43be168..539caf7 100644 (file)
@@ -406,9 +406,6 @@ RCS file: ", 0);
        what the best behavior is.  Passing NULL for the `nametag' argument
        preserves the existing behavior. */
 
-    cvs_output ("retrieving revision ", 0);
-    cvs_output (rev1, 0);
-    cvs_output ("\n", 1);
     status = RCS_checkout (rcsfile, NULL, rev1, NULL, options, tmpfile1,
                           (RCSCHECKOUTPROC)0, NULL);
     if (status > 0)
@@ -432,9 +429,6 @@ RCS file: ", 0);
     else
     {
        tmpfile2 = cvs_temp_name ();
-       cvs_output ("retrieving revision ", 0);
-       cvs_output (rev2, 0);
-       cvs_output ("\n", 1);
        status = RCS_checkout (rcsfile, NULL, rev2, NULL, options,
                               tmpfile2, (RCSCHECKOUTPROC)0, NULL);
        if (status > 0)