summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_subr.c
diff options
context:
space:
mode:
authorfgsch <fgsch@openbsd.org>2001-05-01 18:31:35 +0000
committerfgsch <fgsch@openbsd.org>2001-05-01 18:31:35 +0000
commitca9edc536310d68618985b9839e85c3bed118f9d (patch)
tree4556da616b53235951053fec6a6f03e19a6d833f /sys/netinet/tcp_subr.c
parentUpdate; mpech@prosoft.org.lv (diff)
downloadwireguard-openbsd-ca9edc536310d68618985b9839e85c3bed118f9d.tar.xz
wireguard-openbsd-ca9edc536310d68618985b9839e85c3bed118f9d.zip
Fix tcp_signature_tdb_input decl; kernel compiles again if TCP_SIGNATURE
option is used. Note that this does not work.
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r--sys/netinet/tcp_subr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index 4bc0ae71247..12af26c39ca 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_subr.c,v 1.41 2001/04/06 04:42:09 csapuntz Exp $ */
+/* $OpenBSD: tcp_subr.c,v 1.42 2001/05/01 18:31:35 fgsch Exp $ */
/* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */
/*
@@ -1037,11 +1037,12 @@ tcp_signature_tdb_input(m, tdbp, skip, protoff)
}
int
-tcp_signature_tdb_output(m, tdbp, mp, skip, protoff)
+tcp_signature_tdb_output(m, tdbp, mp, skip, protoff, tdb2)
struct mbuf *m;
struct tdb *tdbp;
struct mbuf **mp;
int skip, protoff;
+ struct tdb *tdb2;
{
return (EINVAL);
}