diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-15 18:27:52 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-15 18:27:52 +0000 |
commit | 6ef38fa999f364a0ef065d148412851df1a084d4 (patch) | |
tree | b63ac9697dcaf25193c7ab14c3d69ccfb4f380ea | |
parent | 7e6cfd014fa0bba695fc424b8eb086a107370105 (diff) |
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)++) |