summaryrefslogtreecommitdiff
path: root/sbin/ping/ping.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-01-12 20:07:06 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-01-12 20:07:06 +0000
commitbf6c368338507f9a2b92a0099b0212c537270f62 (patch)
treeb0ab5425e320c62f74b578dc12c5aa8022fdda64 /sbin/ping/ping.c
parent1a2571902f64a1603a92d0f28fa002255a416762 (diff)
remove extra + character in status output
Diffstat (limited to 'sbin/ping/ping.c')
-rw-r--r--sbin/ping/ping.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/ping/ping.c b/sbin/ping/ping.c
index 794d9ffcf7c..0f2cd1f7121 100644
--- a/sbin/ping/ping.c
+++ b/sbin/ping/ping.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ping.c,v 1.43 2001/01/11 19:22:09 deraadt Exp $ */
+/* $OpenBSD: ping.c,v 1.44 2001/01/12 20:07:05 deraadt Exp $ */
/* $NetBSD: ping.c,v 1.20 1995/08/11 22:37:58 cgd Exp $ */
/*
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)ping.c 8.1 (Berkeley) 6/5/93";
#else
-static char rcsid[] = "$OpenBSD: ping.c,v 1.43 2001/01/11 19:22:09 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: ping.c,v 1.44 2001/01/12 20:07:05 deraadt Exp $";
#endif
#endif /* not lint */
@@ -904,7 +904,7 @@ summary(header)
(void)printf("%ld packets transmitted, ", ntransmitted);
(void)printf("%ld packets received, ", nreceived);
if (nrepeats)
- (void)printf("+%ld duplicates, ", nrepeats);
+ (void)printf("%ld duplicates, ", nrepeats);
if (ntransmitted) {
if (nreceived > ntransmitted)
(void)printf("-- somebody's printing up packets!");