summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2006-08-15 17:32:17 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2006-08-15 17:32:17 +0000
commit00903535446853ec9372825c87f66951e91ca440 (patch)
tree92e8f8d4afc5d12f0de6fec4b4ceb9ef207c807d /usr.sbin
parent9bcce469d58917ee855ce0834f9d1cd37eab03a9 (diff)
need to print leading space now
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/tcpdump/print-vqp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/print-vqp.c b/usr.sbin/tcpdump/print-vqp.c
index bbf664873e4..d085b6ce5c9 100644
--- a/usr.sbin/tcpdump/print-vqp.c
+++ b/usr.sbin/tcpdump/print-vqp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: print-vqp.c,v 1.4 2006/08/15 10:28:23 stevesk Exp $ */
+/* $OpenBSD: print-vqp.c,v 1.5 2006/08/15 17:32:16 stevesk Exp $ */
/*
* Copyright (c) 2006 Kevin Steves <stevesk@openbsd.org>
@@ -209,7 +209,7 @@ vqp_print(const u_char *bp, u_int len)
u_int dcount;
TCHECK(p->version);
- printf("VQPv%u", p->version);
+ printf(" VQPv%u", p->version);
if (p->version != 1)
return;
TCHECK(p->opcode);