summaryrefslogtreecommitdiff
path: root/sys/netinet/ip_spd.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-09-28 01:44:58 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-09-28 01:44:58 +0000
commit4e9da31ff3e83a9c8e43bcd03fabee73ea881bbd (patch)
treec02daef61976ea65de0a707a10a04a69b7c23efd /sys/netinet/ip_spd.c
parentf155749dda1c2d06e3673d77ba1c765b6ce93364 (diff)
missing PR_NOWAIT
Diffstat (limited to 'sys/netinet/ip_spd.c')
-rw-r--r--sys/netinet/ip_spd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_spd.c b/sys/netinet/ip_spd.c
index 6d4a8572454..86e12a0d5bc 100644
--- a/sys/netinet/ip_spd.c
+++ b/sys/netinet/ip_spd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_spd.c,v 1.62 2010/07/09 16:58:06 reyk Exp $ */
+/* $OpenBSD: ip_spd.c,v 1.63 2010/09/28 01:44:57 deraadt Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu)
*
@@ -781,7 +781,7 @@ ipsp_acquire_sa(struct ipsec_policy *ipo, union sockaddr_union *gw,
0, 0, 0, "ipsec acquire", NULL);
}
- ipa = pool_get(&ipsec_acquire_pool, PR_ZERO);
+ ipa = pool_get(&ipsec_acquire_pool, PR_NOWAIT|PR_ZERO);
if (ipa == NULL)
return ENOMEM;