diff options
author | 2001-05-31 20:36:47 +0000 | |
---|---|---|
committer | 2001-05-31 20:36:47 +0000 | |
commit | 25d3ecc8a706e6a0689bd3655318d0321f610f45 (patch) | |
tree | 2f4d641aef266f06724d89b8bbf9b5b6c29a9e08 /sys/netinet/tcp_subr.c | |
parent | If we're passed keys and certs to use, put them in the conf space. (diff) | |
download | wireguard-openbsd-25d3ecc8a706e6a0689bd3655318d0321f610f45.tar.xz wireguard-openbsd-25d3ecc8a706e6a0689bd3655318d0321f610f45.zip |
Match IPSEC output prototypes.
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 12af26c39ca..8d56df93b48 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.42 2001/05/01 18:31:35 fgsch Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.43 2001/05/31 20:36:47 angelos Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -1037,12 +1037,11 @@ tcp_signature_tdb_input(m, tdbp, skip, protoff) } int -tcp_signature_tdb_output(m, tdbp, mp, skip, protoff, tdb2) +tcp_signature_tdb_output(m, tdbp, mp, skip, protoff) struct mbuf *m; struct tdb *tdbp; struct mbuf **mp; int skip, protoff; - struct tdb *tdb2; { return (EINVAL); } |