diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-02-03 13:40:46 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-02-03 13:40:46 +0000 |
commit | 60c6f58cd9fc50f82e3e2e637b40fe29b7e83bac (patch) | |
tree | f693dbc06b65fd2f24b466e53ad25eafabe7e5c5 /sbin/pfctl/pfctl_parser.h | |
parent | 18a8f4b1d9fd6f8ca7b200916d51f2a12bd88dab (diff) |
fix a problem with queue definitions when load options (like -N etc) are
given; they used to check for their parent interface/queue even in this
case.
ok dhartmei@ cedric@
Diffstat (limited to 'sbin/pfctl/pfctl_parser.h')
-rw-r--r-- | sbin/pfctl/pfctl_parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/pfctl/pfctl_parser.h b/sbin/pfctl/pfctl_parser.h index 983afd5ed0c..dd0a8c1307a 100644 --- a/sbin/pfctl/pfctl_parser.h +++ b/sbin/pfctl/pfctl_parser.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_parser.h,v 1.45 2003/02/02 23:22:07 henning Exp $ */ +/* $OpenBSD: pfctl_parser.h,v 1.46 2003/02/03 13:40:45 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -58,6 +58,7 @@ struct pfctl { int dev; int opts; + int loadopt; u_int32_t rule_nr; struct pfioc_pooladdr paddr; struct pfioc_rule *prule[PF_RULESET_MAX]; |