diff options
author | Michael Knudsen <mk@cvs.openbsd.org> | 2008-06-14 16:55:29 +0000 |
---|---|---|
committer | Michael Knudsen <mk@cvs.openbsd.org> | 2008-06-14 16:55:29 +0000 |
commit | fcba0fd831fe70ed197146d72af6b12bca76ce2a (patch) | |
tree | 5a514f0faf93798c48e2b37eae20a201691009fe /sys/net | |
parent | e911095913a5493eb4f936be3fa86980f8553fb8 (diff) |
Also do the PR_ZERO dance here. This was held back on Henning's request
because it conflicted with the change he did in pf_if.c earlier.
He finally woke up to ok (well, ``yes'', really) this version now.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/pf_if.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/pf_if.c b/sys/net/pf_if.c index dcc8919879d..e39a9d6501e 100644 --- a/sys/net/pf_if.c +++ b/sys/net/pf_if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_if.c,v 1.53 2008/06/14 02:22:13 henning Exp $ */ +/* $OpenBSD: pf_if.c,v 1.54 2008/06/14 16:55:28 mk Exp $ */ /* * Copyright 2005 Henning Brauer <henning@openbsd.org> @@ -332,9 +332,9 @@ pfi_dynaddr_setup(struct pf_addr_wrap *aw, sa_family_t af) if (aw->type != PF_ADDR_DYNIFTL) return (0); - if ((dyn = pool_get(&pfi_addr_pl, PR_WAITOK|PR_LIMITFAIL)) == NULL) + if ((dyn = pool_get(&pfi_addr_pl, PR_WAITOK | PR_LIMITFAIL | PR_ZERO)) + == NULL) return (1); - bzero(dyn, sizeof(*dyn)); s = splsoftnet(); if (!strcmp(aw->v.ifname, "self")) |