summaryrefslogtreecommitdiff
path: root/usr.bin/cvs
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-11-03 15:57:41 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-11-03 15:57:41 +0000
commitd3f6a6824b60ddbeef2348206e1e710add347a38 (patch)
tree41d8e78d925efc768fe51eec65831b3ffd90d6cf /usr.bin/cvs
parent9ad660962ad3a2bf570445fc2cac0157c4448f19 (diff)
output tweaks;
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r--usr.bin/cvs/getlog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c
index 72a82ba7ca4..6e68596a9fd 100644
--- a/usr.bin/cvs/getlog.c
+++ b/usr.bin/cvs/getlog.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: getlog.c,v 1.46 2005/08/08 14:48:27 xsa Exp $ */
+/* $OpenBSD: getlog.c,v 1.47 2005/11/03 15:57:40 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -268,10 +268,10 @@ cvs_getlog_local(CVSFILE *cf, void *arg)
cvs_printf("keyword substitution: %s\n",
rf->rf_expand == NULL ? "kv" : rf->rf_expand);
- cvs_printf("total revisions: %u;", rf->rf_ndelta);
+ cvs_printf("total revisions: %u", rf->rf_ndelta);
if ((log_honly == 0) && (log_lhonly == 0))
- cvs_printf("\tselected revisions: %u", nrev);
+ cvs_printf(";\tselected revisions: %u", nrev);
cvs_printf("\n");