diff options
Diffstat (limited to 'sys/netinet/ipsec_input.c')
-rw-r--r-- | sys/netinet/ipsec_input.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index aaddbf4a778..84292f88471 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.77 2006/01/13 10:11:23 mpf Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.78 2006/03/04 22:40:16 brad Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -676,7 +676,7 @@ int ah4_input_cb(struct mbuf *m, ...) { struct ifqueue *ifq = &ipintrq; - int s = splimp(); + int s = splnet(); /* * Interface pointer is already in first mbuf; chop off the @@ -731,7 +731,7 @@ int esp4_input_cb(struct mbuf *m, ...) { struct ifqueue *ifq = &ipintrq; - int s = splimp(); + int s = splnet(); /* * Interface pointer is already in first mbuf; chop off the @@ -773,7 +773,7 @@ int ipcomp4_input_cb(struct mbuf *m, ...) { struct ifqueue *ifq = &ipintrq; - int s = splimp(); + int s = splnet(); /* * Interface pointer is already in first mbuf; chop off the |