summaryrefslogtreecommitdiffstats
path: root/sys/netinet
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>2004-04-18 11:45:49 +0000
committerluigi <luigi@FreeBSD.org>2004-04-18 11:45:49 +0000
commiteb6b02962a3c750219da59181ee335f31cb71130 (patch)
treed5c0d42bf7beea1e284499aa66f8e9d4a904d524 /sys/netinet
parente131978e46341de2777ca2731993d2c51b896c87 (diff)
downloadFreeBSD-src-eb6b02962a3c750219da59181ee335f31cb71130.zip
FreeBSD-src-eb6b02962a3c750219da59181ee335f31cb71130.tar.gz
Replace Bcopy with 'the real thing' as in the rest of the file.
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/if_ether.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c
index 22da929..4c91522 100644
--- a/sys/netinet/if_ether.c
+++ b/sys/netinet/if_ether.c
@@ -269,7 +269,7 @@ arp_rtrequest(req, rt, info)
* the route to force traffic out to the hardware.
*/
rt->rt_expire = 0;
- Bcopy(IF_LLADDR(rt->rt_ifp), LLADDR(SDL(gate)),
+ bcopy(IF_LLADDR(rt->rt_ifp), LLADDR(SDL(gate)),
SDL(gate)->sdl_alen = rt->rt_ifp->if_addrlen);
if (useloopback)
rt->rt_ifp = loif;
OpenPOWER on IntegriCloud