From eb86c09749e48f9ca68f832e7299ce399297a66e Mon Sep 17 00:00:00 2001 From: Bill Paul Date: Tue, 16 Nov 1999 15:34:52 +0000 Subject: [PATCH] Fix usage of m_pullup(). --- sys/pci/if_rl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c index bd90b70a6ce8..64532c2fdf88 100644 --- a/sys/pci/if_rl.c +++ b/sys/pci/if_rl.c @@ -1130,7 +1130,7 @@ static void rl_rxeof(sc) m_adj(m, RL_ETHER_ALIGN); m_copyback(m, wrap, total_len - wrap, sc->rl_cdata.rl_rx_buf); - m_pullup(m, MHLEN - RL_ETHER_ALIGN); + m = m_pullup(m, MHLEN - RL_ETHER_ALIGN); } cur_rx = (total_len - wrap + ETHER_CRC_LEN); } else {