summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjakob <jakob@openbsd.org>2001-10-04 07:37:24 +0000
committerjakob <jakob@openbsd.org>2001-10-04 07:37:24 +0000
commitd69c35488b4f4225bc4bcbbd77b4855debd4344e (patch)
treeea6a613cfc2c697079104be6a7814b7a076aa7f7
parentFix path to /bin/ls; ok millert (diff)
downloadwireguard-openbsd-d69c35488b4f4225bc4bcbbd77b4855debd4344e.tar.xz
wireguard-openbsd-d69c35488b4f4225bc4bcbbd77b4855debd4344e.zip
trim warnx output
-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)