summaryrefslogtreecommitdiffstats
path: root/sys/net/if_ethersubr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/net/if_ethersubr.c')
-rw-r--r--sys/net/if_ethersubr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c
index f648fd5..d6046be 100644
--- a/sys/net/if_ethersubr.c
+++ b/sys/net/if_ethersubr.c
@@ -1191,9 +1191,9 @@ ngether_send(struct arpcom *ac, struct ether_header *eh, struct mbuf *m)
* big lump. The next node will do an m_pullup()
* for exactly the amount of data it needs and
* hopefully everything after that will not
- * need one. So let's just use m_prepend.
+ * need one. So let's just use M_PREPEND.
*/
- m = m_prepend(m, sizeof(*eh), M_DONTWAIT);
+ M_PREPEND(m, sizeof (*eh), M_DONTWAIT);
if (m == NULL)
return;
}
OpenPOWER on IntegriCloud