summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_esp.c
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-05-27 03:48:35 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-05-27 03:48:35 +0000
commit1cb5bbc336ea0de7299beb19925f0b2dbd716bb4 (patch)
treed662d23f7ccf87dcc149d0ed0b0f890ce174ef82 /sys/netinet/ip_esp.c
parent830154436a74cf581dcb1c793d4dee7bea822234 (diff)
Pass a NULL packet tag for now to ipsp_common_input_cb().
Diffstat (limited to 'sys/netinet/ip_esp.c')
-rw-r--r--sys/netinet/ip_esp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_esp.c b/sys/netinet/ip_esp.c
index faedc72e53f..3577e6babad 100644
--- a/sys/netinet/ip_esp.c
+++ b/sys/netinet/ip_esp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_esp.c,v 1.59 2001/05/17 18:41:47 provos Exp $ */
+/* $OpenBSD: ip_esp.c,v 1.60 2001/05/27 03:48:34 angelos Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
@@ -663,7 +663,7 @@ esp_input_cb(void *op)
m_copyback(m, protoff, sizeof(u_int8_t), lastthree + 2);
/* Back to generic IPsec input processing */
- err = ipsec_common_input_cb(m, tdb, skip, protoff);
+ err = ipsec_common_input_cb(m, tdb, skip, protoff, NULL);
splx(s);
return err;