diff options
| author | Tor Egge <tegge@FreeBSD.org> | 1997-06-12 19:20:53 +0000 |
|---|---|---|
| committer | Tor Egge <tegge@FreeBSD.org> | 1997-06-12 19:20:53 +0000 |
| commit | 43f83f0b4799c927d49dccc0465940e90c8b98ce (patch) | |
| tree | b7ef2fd4dfa023dde0d6473f1e0d63ebeb8387b2 | |
| parent | f7cf1c1d149d4c8bdc486df79116d8ca36bc6c49 (diff) | |
Notes
| -rw-r--r-- | sys/i386/boot/netboot/ns8390.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/boot/netboot/ns8390.c b/sys/i386/boot/netboot/ns8390.c index c63846e40bf9..22f78fcbbcdb 100644 --- a/sys/i386/boot/netboot/ns8390.c +++ b/sys/i386/boot/netboot/ns8390.c @@ -425,7 +425,7 @@ eth_transmit(d,t,s,p) #ifdef INCLUDE_3COM if (eth_vendor == VENDOR_3COM) { bcopy(d, eth_bmem, 6); /* dst */ - bcopy(eth_node_addr, eth_bmem+6, ETHER_ADDR_SIZE); /* src */ + bcopy(eth_node_addr, eth_bmem+6, ETHER_ADDR_LEN); /* src */ *(eth_bmem+12) = t>>8; /* type */ *(eth_bmem+13) = t; bcopy(p, eth_bmem+14, s); |
