diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-04-14 00:31:00 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-04-14 00:31:00 +0000 |
commit | f026bc84847fa4cc8dd2309260420e03148ffe6a (patch) | |
tree | 47ce3df0c65eda4578ef207063e6a49c14a07a8e /sys/netinet6/ip6_output.c | |
parent | 7c24c568652099d54183ff75ebb1a488fdffa324 (diff) |
Minor changes, preparing for real socket-attached TDBs; also, more
information will be stored in the TDB. ok ho@ provos@
Diffstat (limited to 'sys/netinet6/ip6_output.c')
-rw-r--r-- | sys/netinet6/ip6_output.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index 26b3cd730ea..901dddb226d 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_output.c,v 1.31 2001/04/11 04:49:23 itojun Exp $ */ +/* $OpenBSD: ip6_output.c,v 1.32 2001/04/14 00:30:59 angelos Exp $ */ /* $KAME: ip6_output.c,v 1.172 2001/03/25 09:55:56 itojun Exp $ */ /* @@ -594,7 +594,8 @@ skip_ipsec2:; m->m_flags &= ~(M_BCAST | M_MCAST); /* just in case */ /* Callee frees mbuf */ - error = ipsp_process_packet(m, tdb, AF_INET6, 0); + /* XXX Should use last argument */ + error = ipsp_process_packet(m, tdb, AF_INET6, 0, NULL); splx(s); return error; /* Nothing more to be done */ } |