diff options
author | 2000-06-18 19:48:54 +0000 | |
---|---|---|
committer | 2000-06-18 19:48:54 +0000 | |
commit | c9246c0ea43c1bf45ed2cb24727c637e9b5ab6ac (patch) | |
tree | f07cba17f6c5a18d591bec12257aff2988472c3b | |
parent | routes on down interfaces are disabled (diff) | |
download | wireguard-openbsd-c9246c0ea43c1bf45ed2cb24727c637e9b5ab6ac.tar.xz wireguard-openbsd-c9246c0ea43c1bf45ed2cb24727c637e9b5ab6ac.zip |
Correct function declaration.
-rw-r--r-- | sys/netinet/ip_ipsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index dd6135e4d89..7d3eab8f5ab 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.94 2000/06/18 19:10:07 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.95 2000/06/18 19:48:54 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -618,7 +618,7 @@ gettdb(u_int32_t spi, union sockaddr_union *dst, u_int8_t proto) #if DDB void -tdb_hashstats() +tdb_hashstats(void) { int i, cnt, buckets[16]; struct tdb *tdbp; |