diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_ipip.c | 4 | ||||
-rw-r--r-- | sys/netinet/ip_spd.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/ip_ipip.c b/sys/netinet/ip_ipip.c index 40542d7cbcd..385ea888921 100644 --- a/sys/netinet/ip_ipip.c +++ b/sys/netinet/ip_ipip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipip.c,v 1.14 2001/05/11 17:20:11 aaron Exp $ */ +/* $OpenBSD: ip_ipip.c,v 1.15 2001/05/30 12:22:57 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -386,7 +386,7 @@ ipip_input(struct mbuf *m, int iphlen) int ipip_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp, int skip, - int protoff, struct tdb *tdb2) + int protoff) { u_int8_t tp, otos; diff --git a/sys/netinet/ip_spd.c b/sys/netinet/ip_spd.c index 16965f0c0a1..09bd594d0bb 100644 --- a/sys/netinet/ip_spd.c +++ b/sys/netinet/ip_spd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_spd.c,v 1.20 2001/05/30 10:59:03 angelos Exp $ */ +/* $OpenBSD: ip_spd.c,v 1.21 2001/05/30 12:22:15 angelos Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -892,7 +892,7 @@ ipsp_clear_acquire(struct tdb *tdb) ipa->ipa_packet->m_flags &= ~(M_MCAST | M_BCAST); ipsp_process_packet(ipa->ipa_packet, tdb, - AF_INET, 0, NULL); + AF_INET, 0); ipa->ipa_packet = NULL; break; @@ -922,7 +922,7 @@ ipsp_clear_acquire(struct tdb *tdb) case IPSP_DIRECTION_OUT: ipa->ipa_packet->m_flags &= ~(M_BCAST | M_MCAST); ipsp_process_packet(ipa->ipa_packet, tdb, - AF_INET6, 0, NULL); + AF_INET6, 0); ipa->ipa_packet = NULL; break; |