summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2009-02-19 17:08:42 +0000
committerderaadt <deraadt@openbsd.org>2009-02-19 17:08:42 +0000
commit057e920b32ae2802f70d5eb72c6ce46d0f3d20aa (patch)
treed2904743c8fb65f3eaf9315e549ba8f9fedccd4d
parentDon't use scsi_xfer if we don't run a command came from the scsi layer. (diff)
downloadwireguard-openbsd-057e920b32ae2802f70d5eb72c6ce46d0f3d20aa.tar.xz
wireguard-openbsd-057e920b32ae2802f70d5eb72c6ce46d0f3d20aa.zip
spacing
-rw-r--r--sbin/pfctl/parse.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y
index c4eb5341378..9c627390fce 100644
--- a/sbin/pfctl/parse.y
+++ b/sbin/pfctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.554 2008/10/17 12:59:53 henning Exp $ */
+/* $OpenBSD: parse.y,v 1.555 2009/02/19 17:08:42 deraadt Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -1275,7 +1275,7 @@ antispoof : ANTISPOOF logquick antispoof_ifspc af antispoof_opts {
}
;
-antispoof_ifspc : FOR antispoof_if { $$ = $2; }
+antispoof_ifspc : FOR antispoof_if { $$ = $2; }
| FOR '{' optnl antispoof_iflst '}' { $$ = $4; }
;
@@ -1287,8 +1287,8 @@ antispoof_iflst : antispoof_if optnl { $$ = $1; }
}
;
-antispoof_if : if_item { $$ = $1; }
- | '(' if_item ')' {
+antispoof_if : if_item { $$ = $1; }
+ | '(' if_item ')' {
$2->dynamic = 1;
$$ = $2;
}