diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_ipsp.h | 5 | ||||
-rw-r--r-- | sys/netinet/tcp_subr.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sys/netinet/ip_ipsp.h b/sys/netinet/ip_ipsp.h index 048d12c4477..b45454d7235 100644 --- a/sys/netinet/ip_ipsp.h +++ b/sys/netinet/ip_ipsp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.h,v 1.83 2001/04/14 00:30:59 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.h,v 1.84 2001/05/01 18:31:35 fgsch Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -562,7 +562,8 @@ extern int tcp_signature_tdb_zeroize __P((struct tdb *)); extern int tcp_signature_tdb_input __P((struct mbuf *, struct tdb *, int, int)); extern int tcp_signature_tdb_output __P((struct mbuf *, struct tdb *, - struct mbuf **, int, int)); + struct mbuf **, int, int, + struct tdb *)); /* Padding */ extern caddr_t m_pad(struct mbuf *, int); 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); } |