summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Thomas McBride <mcbride@cvs.openbsd.org>2006-10-06 16:27:50 +0000
committerRyan Thomas McBride <mcbride@cvs.openbsd.org>2006-10-06 16:27:50 +0000
commitc5a5bb94c0b4744ae80abd8384f75443216ea29b (patch)
tree811b3b5a0a3c64ecf4cfbf09d330c02a93ffaa18
parente621893d0a5bdb1d4004ffe8a4a17e7598855a21 (diff)
Print out 'no state' when the rule is not stateful.
-rw-r--r--sbin/pfctl/pfctl_parser.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c
index c009f99a4c5..0ef6d90d25b 100644
--- a/sbin/pfctl/pfctl_parser.c
+++ b/sbin/pfctl/pfctl_parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl_parser.c,v 1.227 2006/08/08 20:05:54 dhartmei Exp $ */
+/* $OpenBSD: pfctl_parser.c,v 1.228 2006/10/06 16:27:49 mcbride Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -818,7 +818,9 @@ print_rule(struct pf_rule *r, const char *anchor_call, int verbose)
}
if (r->tos)
printf(" tos 0x%2.2x", r->tos);
- if (r->keep_state == PF_STATE_NORMAL)
+ if (!r->keep_state)
+ printf(" no state");
+ else if (r->keep_state == PF_STATE_NORMAL)
printf(" keep state");
else if (r->keep_state == PF_STATE_MODULATE)
printf(" modulate state");