diff options
author | 2013-06-03 15:00:00 +0000 | |
---|---|---|
committer | 2013-06-03 15:00:00 +0000 | |
commit | effb23002145ea77b0ba98f939b469392cae304c (patch) | |
tree | a45e97e9013757624d643dcc282dc4e374176f22 | |
parent | Add a minimal implementation of the locale(1) utility. (diff) | |
download | wireguard-openbsd-effb23002145ea77b0ba98f939b469392cae304c.tar.xz wireguard-openbsd-effb23002145ea77b0ba98f939b469392cae304c.zip |
put back the match member to the anchor stack struct - userland (pfctl)
uses it. that is so incedibly wrong...
sorry for the breakage, folks. found by tedu, SMSing me out of my breakfast
bob
-rw-r--r-- | sys/net/pfvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index 36c6e4f5917..fa82ba08153 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.381 2013/06/03 01:41:04 henning Exp $ */ +/* $OpenBSD: pfvar.h,v 1.382 2013/06/03 15:00:00 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1004,6 +1004,7 @@ struct pf_anchor { char path[MAXPATHLEN]; struct pf_ruleset ruleset; int refcnt; /* anchor rules */ + int match; }; RB_PROTOTYPE(pf_anchor_global, pf_anchor, entry_global, pf_anchor_compare); RB_PROTOTYPE(pf_anchor_node, pf_anchor, entry_node, pf_anchor_compare); |