From 9adc8e4d7589e139697e00f34149e3e3f9b73ef5 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Wed, 12 Mar 2003 06:08:48 +0000 Subject: [PATCH] correct malloc flag argument Reported by: Kris Kennaway --- sys/netinet6/ip6_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index bb46d3527db..dcb74fbd7c4 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); } -- 2.45.2