summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2003-07-04 11:05:16 +0000
committerhenning <henning@openbsd.org>2003-07-04 11:05:16 +0000
commite91870b13a744ef33579723e74424cb650e5403f (patch)
tree41788ccb13fcf8a2215f1724b011084c10bc3a7b
parentcosmetic changes to keep the different code paths in sync; ok henning (diff)
downloadwireguard-openbsd-e91870b13a744ef33579723e74424cb650e5403f.tar.xz
wireguard-openbsd-e91870b13a744ef33579723e74424cb650e5403f.zip
KNF
-rw-r--r--sbin/pfctl/pf_print_state.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pf_print_state.c b/sbin/pfctl/pf_print_state.c
index 74060871211..02e99e55d71 100644
--- a/sbin/pfctl/pf_print_state.c
+++ b/sbin/pfctl/pf_print_state.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pf_print_state.c,v 1.31 2003/06/21 09:07:01 djm Exp $ */
+/* $OpenBSD: pf_print_state.c,v 1.32 2003/07/04 11:05:16 henning Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -250,7 +250,7 @@ print_state(struct pf_state *s, int opts)
min = s->expire % 60;
s->expire /= 60;
printf(", expires in %.2u:%.2u:%.2u", s->expire, min, sec);
- printf(", %u:%u pkts, %u:%u bytes",
+ printf(", %u:%u pkts, %u:%u bytes",
s->packets[0], s->packets[1], s->bytes[0], s->bytes[1]);
if (s->anchor.nr != -1)
printf(", anchor %u", s->anchor.nr);