diff options
| author | Bill Paul <wpaul@FreeBSD.org> | 1999-11-16 15:34:52 +0000 |
|---|---|---|
| committer | Bill Paul <wpaul@FreeBSD.org> | 1999-11-16 15:34:52 +0000 |
| commit | eb86c09749e48f9ca68f832e7299ce399297a66e (patch) | |
| tree | 3b46fdccd377bc83587f9ec2052b133dbf807522 | |
| parent | 6cf898c7673365ca8da6cd8f8eb3b99f47e4a4c0 (diff) | |
Notes
| -rw-r--r-- | sys/pci/if_rl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |
