From: bluhm Date: Mon, 23 Oct 2023 21:59:00 +0000 (+0000) Subject: Do not print "retrieving revision 1.13" while doing cvs diff. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=846414fd41b7f15dc79a67cab1426332d1e74e92;p=openbsd Do not print "retrieving revision 1.13" while doing cvs diff. Provide shorter diffs without unnecessary debugging output. Note that this affects cvs installed on the server side. OK deraadt@ --- diff --git a/gnu/usr.bin/cvs/src/rcscmds.c b/gnu/usr.bin/cvs/src/rcscmds.c index 43be16839df..539caf7c350 100644 --- a/gnu/usr.bin/cvs/src/rcscmds.c +++ b/gnu/usr.bin/cvs/src/rcscmds.c @@ -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)