summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_output.c
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-04-14 00:31:00 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-04-14 00:31:00 +0000
commitf026bc84847fa4cc8dd2309260420e03148ffe6a (patch)
tree47ce3df0c65eda4578ef207063e6a49c14a07a8e /sys/netinet/ip_output.c
parent7c24c568652099d54183ff75ebb1a488fdffa324 (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/netinet/ip_output.c')
-rw-r--r--sys/netinet/ip_output.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index 9d32e1206a0..bef3b9beb6a 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_output.c,v 1.88 2001/04/06 04:42:08 csapuntz Exp $ */
+/* $OpenBSD: ip_output.c,v 1.89 2001/04/14 00:30:59 angelos Exp $ */
/* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */
/*
@@ -588,7 +588,8 @@ sendit:
m->m_flags &= ~(M_MCAST | M_BCAST);
/* Callee frees mbuf */
- error = ipsp_process_packet(m, tdb, AF_INET, 0);
+ /* XXX Last argument should be used */
+ error = ipsp_process_packet(m, tdb, AF_INET, 0, NULL);
splx(s);
return error; /* Nothing more to be done */
}