summaryrefslogtreecommitdiff
path: root/sbin/pfctl
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2002-06-07 19:30:41 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2002-06-07 19:30:41 +0000
commit96c246e9216662f49add6f99e5e12f8c6d0c6cd0 (patch)
tree90fb960b62cf84e4a26308e900593690e8afea16 /sbin/pfctl
parentb1e5f92feb4932407da2768e73d0aa2872f14521 (diff)
minor KNF while I'm here
ok dhartmei@
Diffstat (limited to 'sbin/pfctl')
-rw-r--r--sbin/pfctl/pfctl_parser.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c
index 65bc1bdf4a9..51c8652821a 100644
--- a/sbin/pfctl/pfctl_parser.c
+++ b/sbin/pfctl/pfctl_parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl_parser.c,v 1.76 2002/06/06 22:22:44 mickey Exp $ */
+/* $OpenBSD: pfctl_parser.c,v 1.77 2002/06/07 19:30:40 henning Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -257,11 +257,11 @@ print_op(u_int8_t op, const char *a1, const char *a2)
printf("%s >< %s ", a1, a2);
else if (op == PF_OP_XRG)
printf("%s <> %s ", a1, a2);
- else if (op == PF_OP_EQ) {
+ else if (op == PF_OP_EQ)
printf("= %s ", a1);
- } else if (op == PF_OP_NE) {
+ else if (op == PF_OP_NE)
printf("!= %s ", a1);
- } else if (op == PF_OP_LT)
+ else if (op == PF_OP_LT)
printf("< %s ", a1);
else if (op == PF_OP_LE)
printf("<= %s ", a1);