summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/throughput.c
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2002-04-16 23:57:21 +0000
committerbrian <brian@FreeBSD.org>2002-04-16 23:57:21 +0000
commitf84972208cc476569de7ab6888d63b17606722c1 (patch)
tree29ec3b5d1e28765b7167dfecad7e7f1f62d2c05b /usr.sbin/ppp/throughput.c
parentb86a2d03f8a98e438b3c78ca9fb2a04a1565f133 (diff)
downloadFreeBSD-src-f84972208cc476569de7ab6888d63b17606722c1.zip
FreeBSD-src-f84972208cc476569de7ab6888d63b17606722c1.tar.gz
Don't display an extraneous ``: '' with some packets in/packets out diagnostics
Diffstat (limited to 'usr.sbin/ppp/throughput.c')
-rw-r--r--usr.sbin/ppp/throughput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/throughput.c b/usr.sbin/ppp/throughput.c
index 51c1a54..a303d28 100644
--- a/usr.sbin/ppp/throughput.c
+++ b/usr.sbin/ppp/throughput.c
@@ -141,7 +141,7 @@ throughput_log(struct pppThroughput *t, int level, const char *title)
log_Printf(level, "%s%sConnect time: %d secs: %llu octets in, %llu octets"
" out\n", title, *title ? ": " : "", secs_up, t->OctetsIn,
t->OctetsOut);
- log_Printf(level, "%s%s: %llu packets in, %llu packets out\n",
+ log_Printf(level, "%s%s%llu packets in, %llu packets out\n",
title, *title ? ": " : "", t->PacketsIn, t->PacketsOut);
if (secs_up == 0)
secs_up = 1;
OpenPOWER on IntegriCloud