diff options
| author | 2009-02-19 17:08:42 +0000 | |
|---|---|---|
| committer | 2009-02-19 17:08:42 +0000 | |
| commit | 057e920b32ae2802f70d5eb72c6ce46d0f3d20aa (patch) | |
| tree | d2904743c8fb65f3eaf9315e549ba8f9fedccd4d | |
| parent | Don't use scsi_xfer if we don't run a command came from the scsi layer. (diff) | |
| download | wireguard-openbsd-057e920b32ae2802f70d5eb72c6ce46d0f3d20aa.tar.xz wireguard-openbsd-057e920b32ae2802f70d5eb72c6ce46d0f3d20aa.zip | |
spacing
| -rw-r--r-- | sbin/pfctl/parse.y | 8 |
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; } |
