summaryrefslogtreecommitdiffstats
path: root/sys/netipsec/xform_ah.c
diff options
context:
space:
mode:
authorae <ae@FreeBSD.org>2014-12-11 17:14:49 +0000
committerae <ae@FreeBSD.org>2014-12-11 17:14:49 +0000
commit409532973d8fbc88638613e4f2f187facb219e0b (patch)
treed76a741756b9565850c8cf31ff98f051e1f2aff6 /sys/netipsec/xform_ah.c
parentd1182925a1c133178d7d40afa450963b9fdb62cc (diff)
downloadFreeBSD-src-409532973d8fbc88638613e4f2f187facb219e0b.zip
FreeBSD-src-409532973d8fbc88638613e4f2f187facb219e0b.tar.gz
Remove now unused mtag argument from ipsec*_common_input_cb.
Obtained from: Yandex LLC Sponsored by: Yandex LLC
Diffstat (limited to 'sys/netipsec/xform_ah.c')
-rw-r--r--sys/netipsec/xform_ah.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netipsec/xform_ah.c b/sys/netipsec/xform_ah.c
index 31ad7e9..292dba2 100644
--- a/sys/netipsec/xform_ah.c
+++ b/sys/netipsec/xform_ah.c
@@ -812,12 +812,12 @@ ah_input_cb(struct cryptop *crp)
switch (saidx->dst.sa.sa_family) {
#ifdef INET6
case AF_INET6:
- error = ipsec6_common_input_cb(m, sav, skip, protoff, NULL);
+ error = ipsec6_common_input_cb(m, sav, skip, protoff);
break;
#endif
#ifdef INET
case AF_INET:
- error = ipsec4_common_input_cb(m, sav, skip, protoff, NULL);
+ error = ipsec4_common_input_cb(m, sav, skip, protoff);
break;
#endif
default:
OpenPOWER on IntegriCloud