aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2002-04-16 23:57:21 +0000
committerBrian Somers <brian@FreeBSD.org>2002-04-16 23:57:21 +0000
commit7e1c2e33be7f8b8f963d9c3164948ce239d0973a (patch)
tree29ec3b5d1e28765b7167dfecad7e7f1f62d2c05b /usr.sbin
parentff360cc91b8564829313e547b9827ce8850ea304 (diff)
downloadsrc-7e1c2e33be7f8b8f963d9c3164948ce239d0973a.tar.gz
src-7e1c2e33be7f8b8f963d9c3164948ce239d0973a.zip
Don't display an extraneous ``: '' with some packets in/packets out diagnostics
Notes
Notes: svn path=/head/; revision=94895
Diffstat (limited to 'usr.sbin')
-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 51c1a5433e59..a303d2814ab6 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;