diff options
author | 2000-03-21 04:53:13 +0000 | |
---|---|---|
committer | 2000-03-21 04:53:13 +0000 | |
commit | 9c8ec827aa259138ea07a4e8c9a01733fec63067 (patch) | |
tree | 6e4ecde195918d9d7be8db44bfd81d98d4cbabcd | |
parent | force shell execution; TDeval@PrimeOBJ.COM (diff) | |
download | wireguard-openbsd-9c8ec827aa259138ea07a4e8c9a01733fec63067.tar.xz wireguard-openbsd-9c8ec827aa259138ea07a4e8c9a01733fec63067.zip |
Fix function to comply with prototype. Kind of moot, as tcp signatures
don't work yet anyhow, so there's no point compiling them in.
-rw-r--r-- | sys/netinet/tcp_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index c87800e1e02..c27361f00d3 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.24 2000/02/29 05:25:53 itojun Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.25 2000/03/21 04:53:13 angelos Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -835,7 +835,7 @@ tcp_signature_tdb_zeroize(tdbp) return (0); } -struct mbuf * +int tcp_signature_tdb_input(m, tdbp, skip, protoff) struct mbuf *m; struct tdb *tdbp; |