diff options
author | 2006-08-15 10:28:23 +0000 | |
---|---|---|
committer | 2006-08-15 10:28:23 +0000 | |
commit | dad5b628fc32bacb0740638454c9af5c30c2b0b4 (patch) | |
tree | f4f659d5b467216696ad28e665f5914d25d8ff07 | |
parent | remove the all architectures comment. (diff) | |
download | wireguard-openbsd-dad5b628fc32bacb0740638454c9af5c30c2b0b4.tar.xz wireguard-openbsd-dad5b628fc32bacb0740638454c9af5c30c2b0b4.zip |
stupid error: increment not decrement here.
-rw-r--r-- | usr.sbin/tcpdump/print-vqp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/print-vqp.c b/usr.sbin/tcpdump/print-vqp.c index 742b2cbc0d9..bbf664873e4 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.3 2006/05/24 16:29:31 stevesk Exp $ */ +/* $OpenBSD: print-vqp.c,v 1.4 2006/08/15 10:28:23 stevesk Exp $ */ /* * Copyright (c) 2006 Kevin Steves <stevesk@openbsd.org> @@ -147,7 +147,7 @@ static void print_hex(const u_char *p, u_int len) { while (len--) - printf("%02x", *p--); + printf("%02x", *p++); } static void |