diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-03-21 04:53:14 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-03-21 04:53:14 +0000 |
commit | 5de5ae142c89d83663bac5635e9754e296cc4164 (patch) | |
tree | 37b5374e4e8b12ad2e89dede15fc6bfe38009b9a /sys | |
parent | b74d1803855a1e36a230ebbfae8f3599ce99aec6 (diff) |
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.
Diffstat (limited to 'sys')
-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; |