diff options
author | 2018-12-09 19:38:40 +0000 | |
---|---|---|
committer | 2018-12-09 19:38:40 +0000 | |
commit | f72c8b6f57ca90198d62f8beef06b916b5d6ec08 (patch) | |
tree | c01af7f19aab19acffb1ba98038b6cc7ba6a3631 | |
parent | Keep usage in sync with logic if OPENSSL_NO_DES is set. (diff) | |
download | wireguard-openbsd-f72c8b6f57ca90198d62f8beef06b916b5d6ec08.tar.xz wireguard-openbsd-f72c8b6f57ca90198d62f8beef06b916b5d6ec08.zip |
Zap duplicate signatures
Redundant under _KERNEL since introduction in r1.260 from 2006.
OK jca
-rw-r--r-- | sys/net/pfvar.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h index 476067e560c..4ef9d12b372 100644 --- a/sys/net/pfvar.h +++ b/sys/net/pfvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pfvar.h,v 1.486 2018/09/13 19:53:58 bluhm Exp $ */ +/* $OpenBSD: pfvar.h,v 1.487 2018/12/09 19:38:40 kn Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1925,12 +1925,6 @@ struct pf_anchor *pf_create_anchor(struct pf_anchor *, const char *); struct pf_ruleset *pf_find_or_create_ruleset(const char *); void pf_rs_initialize(void); -#ifdef _KERNEL -int pf_anchor_copyout(const struct pf_ruleset *, - const struct pf_rule *, struct pfioc_rule *); -void pf_anchor_remove(struct pf_rule *); -#endif /* _KERNEL */ - /* The fingerprint functions can be linked into userland programs (tcpdump) */ int pf_osfp_add(struct pf_osfp_ioctl *); #ifdef _KERNEL |