summaryrefslogtreecommitdiff
path: root/sbin/ping/ping.c
diff options
context:
space:
mode:
authorJakob Schlyter <jakob@cvs.openbsd.org>2001-10-04 07:37:25 +0000
committerJakob Schlyter <jakob@cvs.openbsd.org>2001-10-04 07:37:25 +0000
commit2f48ecf9b597ac9d9f06ed27df53de9336d2b7bf (patch)
tree61fb4766e492dc4ed6eb3e9204c57fc72abe4ab8 /sbin/ping/ping.c
parent223ecd7affdab7609dae4fde89e8a4505fe4fc70 (diff)
trim warnx 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 e8a933d9696..76439e51ae1 100644
--- a/sbin/ping/ping.c
+++ b/sbin/ping/ping.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ping.c,v 1.45 2001/10/03 19:36:49 jakob Exp $ */
+/* $OpenBSD: ping.c,v 1.46 2001/10/04 07:37:24 jakob 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.45 2001/10/03 19:36:49 jakob Exp $";
+static char rcsid[] = "$OpenBSD: ping.c,v 1.46 2001/10/04 07:37:24 jakob Exp $";
#endif
#endif /* not lint */
@@ -468,7 +468,7 @@ main(argc, argv)
err(1, "Cannot set the receive buffer size");
}
if (bufspace < DEFAULT_BUFSPACE)
- warnx("Could only allocate a receive buffer of %i bytes (default %i)\n",
+ warnx("Could only allocate a receive buffer of %i bytes (default %i)",
bufspace, DEFAULT_BUFSPACE);
if (to->sin_family == AF_INET)