diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1999-11-15 03:49:35 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1999-11-15 03:49:35 +0000 |
| commit | ecf33d87b288eabeb44d2b5bcdc26d58f32ffb45 (patch) | |
| tree | a7b2cee122c5f15a6607612043abb17e2abc6f02 | |
| parent | bdfebd8480b97bfff808225e6b4f18eb4256fe1b (diff) | |
Notes
| -rw-r--r-- | sys/net/if_ethersubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index f648fd544e7ee..d6046be559316 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; } |
