aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet6/ah_input.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netinet6/ah_input.c')
-rw-r--r--sys/netinet6/ah_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ah_input.c b/sys/netinet6/ah_input.c
index e03eb256a533..24e59ea2f5a7 100644
--- a/sys/netinet6/ah_input.c
+++ b/sys/netinet6/ah_input.c
@@ -449,7 +449,7 @@ ah4_input(m, off)
goto fail;
}
- if (! netisr_queue(NETISR_IP, m)) {
+ if (netisr_queue(NETISR_IP, m)) { /* (0) on success. */
ipsecstat.in_inval++;
m = NULL;
goto fail;
@@ -841,7 +841,7 @@ ah6_input(mp, offp, proto)
goto fail;
}
- if (! netisr_queue(NETISR_IPV6, m)) {
+ if (netisr_queue(NETISR_IPV6, m)) { /* (0) on success. */
ipsec6stat.in_inval++;
m = NULL;
goto fail;