diff options
author | 2018-12-27 16:33:44 +0000 | |
---|---|---|
committer | 2018-12-27 16:33:44 +0000 | |
commit | 11311f66b38bf0396c1f6d6457259bec3429cbd9 (patch) | |
tree | 7f7a428e88b9118aa8267f3db323fe4e2452e64f | |
parent | No need to return early when setting the tick stop. (diff) | |
download | wireguard-openbsd-11311f66b38bf0396c1f6d6457259bec3429cbd9.tar.xz wireguard-openbsd-11311f66b38bf0396c1f6d6457259bec3429cbd9.zip |
Zap duplicate struct declaration
These are in <net/pfvar.h> already.
OK sashan
-rw-r--r-- | sbin/pfctl/pfctl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index bf7120d9083..c8199fa61ba 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.360 2018/09/18 12:55:19 kn Exp $ */ +/* $OpenBSD: pfctl.c,v 1.361 2018/12/27 16:33:44 kn Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -105,9 +105,6 @@ const char *pfctl_lookup_option(char *, const char **); void pfctl_state_store(int, const char *); void pfctl_state_load(int, const char *); -struct pf_anchor_global pf_anchors; -struct pf_anchor pf_main_anchor; - const char *clearopt; char *rulesopt; const char *showopt; |