aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2007-07-05 06:54:03 +0000
committerPeter Wemm <peter@FreeBSD.org>2007-07-05 06:54:03 +0000
commit027307909713ffe0e57a943c96a28ea544a51287 (patch)
tree851edbf75a7039d9e16c336d930c5f051c73aa3c /sys
parentcb3a418e8da1807c214a2c0d0b9f2a136119a164 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet6/ip6_ipsec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_ipsec.c b/sys/netinet6/ip6_ipsec.c
index 3eb015518337..3f339d1880bb 100644
--- a/sys/netinet6/ip6_ipsec.c
+++ b/sys/netinet6/ip6_ipsec.c
@@ -205,7 +205,7 @@ ip6_ipsec_output(struct mbuf **m, struct inpcb *inp, int *flags, int *error,
#ifdef IPSEC
struct tdb_ident *tdbi;
struct m_tag *mtag;
- int s;
+ /* XXX int s; */
if (sp == NULL)
return 1;
mtag = m_tag_find(*m, PACKET_TAG_IPSEC_PENDING_TDB, NULL);
@@ -258,7 +258,7 @@ ip6_ipsec_output(struct mbuf **m, struct inpcb *inp, int *flags, int *error,
* done: below.
*/
KEY_FREESP(sp), sp = NULL;
- splx(s);
+ /* XXX splx(s); */
goto done;
}
}