diff options
author | 2000-01-15 18:27:51 +0000 | |
---|---|---|
committer | 2000-01-15 18:27:51 +0000 | |
commit | 205f08531c32919b736afd7ce62b435effd987ce (patch) | |
tree | db58639fb20903d0d7cd0aa99b82a6a8a15daf8a | |
parent | Remove unneded vars and code. 0 -> NULL. Some KNF. (diff) | |
download | wireguard-openbsd-205f08531c32919b736afd7ce62b435effd987ce.tar.xz wireguard-openbsd-205f08531c32919b736afd7ce62b435effd987ce.zip |
Change function type to non-static.
-rw-r--r-- | sys/netinet/ipsec_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index 1ae4726659b..420cf31604b 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.13 2000/01/10 04:16:52 angelos Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.14 2000/01/15 18:27:51 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -99,7 +99,7 @@ int ah_enable = 0; * in IPv4 or IPv6. */ -static int +int ipsec_common_input(struct mbuf **m0, int skip, int protoff, int af, int sproto) { #define IPSEC_ISTAT(y,z) (sproto == IPPROTO_ESP ? (y)++ : (z)++) |