diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2016-09-15 07:41:48 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2016-09-15 07:41:48 +0000 |
commit | c3bef61e584084a8f86fba71cb344f15fc20491c (patch) | |
tree | e55fa8ff38c04c3cbeb8c1f0965d9bc0213f4d61 /sys/net/raw_usrreq.c | |
parent | 6c6e3889290a73ddae85c68de44d928a838501ed (diff) |
Notes
Diffstat (limited to 'sys/net/raw_usrreq.c')
-rw-r--r-- | sys/net/raw_usrreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/raw_usrreq.c b/sys/net/raw_usrreq.c index 9e22528b7e98a..2649d667d4367 100644 --- a/sys/net/raw_usrreq.c +++ b/sys/net/raw_usrreq.c @@ -95,7 +95,7 @@ raw_input_ext(struct mbuf *m0, struct sockproto *proto, struct sockaddr *src, continue; if (last) { struct mbuf *n; - n = m_copy(m, 0, (int)M_COPYALL); + n = m_copym(m, 0, M_COPYALL, M_NOWAIT); if (n) { if (sbappendaddr(&last->so_rcv, src, n, (struct mbuf *)0) == 0) |