summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2003-03-12 14:45:22 +0000
committerSam Leffler <sam@FreeBSD.org>2003-03-12 14:45:22 +0000
commit4a692a1fc2366ab5afe39376ce8d73044a56de36 (patch)
tree6b15f6e7407f5e9d150f9bf66c02a0d1656dbb88 /sys/netinet
parent8abe8104f31757cccd2af02156e17b59f4d75c40 (diff)
Notes
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_encap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ip_encap.c b/sys/netinet/ip_encap.c
index 478cdfae3ed5..a547c6619b6c 100644
--- a/sys/netinet/ip_encap.c
+++ b/sys/netinet/ip_encap.c
@@ -487,7 +487,7 @@ encap_fillarg(m, ep)
{
struct m_tag *tag;
- tag = m_tag_get(PACKET_TAG_ENCAP, sizeof (void*), M_DONTWAIT);
+ tag = m_tag_get(PACKET_TAG_ENCAP, sizeof (void*), M_NOWAIT);
if (tag) {
*(void**)(tag+1) = ep->arg;
m_tag_prepend(m, tag);