From 915c6a9163411e9ef9369d91dfac3efc96aadc1e Mon Sep 17 00:00:00 2001 From: arr Date: Sun, 9 Dec 2001 17:48:08 +0000 Subject: - Replace M_WAIT with M_TRYWAIT since the M_WAIT flag is deprecated. Spotted by: bde --- sys/netinet6/ip6_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netinet6') diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index 99e8ddd..f148e90 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1540,7 +1540,7 @@ do { \ if (in6p->in6p_options) { struct mbuf *m; m = m_copym(in6p->in6p_options, - 0, M_COPYALL, M_WAIT); + 0, M_COPYALL, M_TRYWAIT); error = soopt_mcopyout(sopt, m); if (error == 0) m_freem(m); -- cgit v1.1