From c5afa8b483d7478b1eb225abb0f72f9bc2ab1a21 Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 5 Jul 2007 06:54:03 +0000 Subject: Fix a stray splx() that caused a new warning. Approved by: re (rwatson) --- sys/netinet6/ip6_ipsec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netinet6/ip6_ipsec.c b/sys/netinet6/ip6_ipsec.c index 3eb0155..3f339d1 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; } } -- cgit v1.1