From 69e554e17fe54b7ef98d2ef9f4f872ff1239ddcb Mon Sep 17 00:00:00 2001 From: sam Date: Wed, 12 Mar 2003 06:08:48 +0000 Subject: correct malloc flag argument Reported by: Kris Kennaway --- sys/netinet6/ip6_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netinet6/ip6_input.c') diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index bb46d35..dcb74fb 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -1603,7 +1603,7 @@ ip6_addaux(m) if (!tag) { tag = m_tag_get(PACKET_TAG_IPV6_INPUT, sizeof (struct ip6aux), - M_DONTWAIT); + M_NOWAIT); if (tag) m_tag_prepend(m, tag); } -- cgit v1.1