diff options
| author | Steve Price <steve@FreeBSD.org> | 1998-03-09 03:07:54 +0000 |
|---|---|---|
| committer | Steve Price <steve@FreeBSD.org> | 1998-03-09 03:07:54 +0000 |
| commit | 6cc8ce08fe804cd01c143ca8473cce8ba5cd3892 (patch) | |
| tree | 149928675f10fe0377e3439d6883de392c09e44d /sys/dev/lnc | |
| parent | 0f95e128c2e4b42d53590651e176dab5c59cd6ae (diff) | |
Notes
Diffstat (limited to 'sys/dev/lnc')
| -rw-r--r-- | sys/dev/lnc/if_lnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/lnc/if_lnc.c b/sys/dev/lnc/if_lnc.c index bff0d53e5c0c..d6f90607acf9 100644 --- a/sys/dev/lnc/if_lnc.c +++ b/sys/dev/lnc/if_lnc.c @@ -1713,7 +1713,7 @@ lnc_start(struct ifnet *ifp) desc = sc->trans_ring + sc->next_to_send; len = mbuf_to_buffer(head, desc->buff.data); desc->md->md3 = 0; - desc->md->md2 = -max(len, ETHER_MIN_LEN); + desc->md->md2 = -max(len, ETHER_MIN_LEN - ETHER_CRC_LEN); desc->md->md1 |= OWN | STP | ENP; INC_MD_PTR(sc->next_to_send, sc->ntdre) } |
