summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-05-27 03:51:32 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-05-27 03:51:32 +0000
commit8709f092bafeaca519da30c3f26abcd78e80faa1 (patch)
tree23d7b3b7661746f3433da1e07fbe0e461c50a408 /sys/netinet
parentd20a9470483b34598fa98966e52a69c2f1644a0d (diff)
Probably a good idea to pass the NULL to the correct function...
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_ah.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_ah.c b/sys/netinet/ip_ah.c
index 9e3c0df70ec..03d0d9d1224 100644
--- a/sys/netinet/ip_ah.c
+++ b/sys/netinet/ip_ah.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ah.c,v 1.54 2001/05/27 03:48:32 angelos Exp $ */
+/* $OpenBSD: ip_ah.c,v 1.55 2001/05/27 03:51:31 angelos Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
@@ -825,7 +825,7 @@ ah_input_cb(void *op)
m->m_pkthdr.len -= rplen + ahx->authsize;
}
- err = ipsec_common_input_cb(m, tdb, skip, protoff);
+ err = ipsec_common_input_cb(m, tdb, skip, protoff, NULL);
splx(s);
return err;
@@ -1208,7 +1208,7 @@ ah_output_cb(void *op)
FREE(ptr, M_XDATA);
crypto_freereq(crp);
- err = ipsp_process_done(m, tdb, tdb2, NULL);
+ err = ipsp_process_done(m, tdb, tdb2);
splx(s);
return err;