diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-03-16 16:58:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-03-16 16:58:41 +0000 |
commit | 79e682ae7b4f1108490faff68064a9ba05331cae (patch) | |
tree | 00efdab40c9c551e3e6bb36929a70ca043d6c006 /sys/netinet | |
parent | 1ffb1a1d36d92abc99f3f6d00dc1929a5cb3bc07 (diff) |
remove message that prints
arplookup: unable to enter address for xxx.xxx.xxx.xxx
because it is absolutely useless in a modern world with cable modems
which leak arp packets over IP netblock zones; Anyone who used this as
a diagnostic for real problems has other tools to use; from discussion
with kitella, ok claudio
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/if_ether.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 567f84a0d5d..4d99bb1e294 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.65 2006/08/21 21:36:53 mpf Exp $ */ +/* $OpenBSD: if_ether.c,v 1.66 2007/03/16 16:58:40 deraadt Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -773,9 +773,6 @@ arplookup(addr, create, proxy) if ((rt->rt_flags & RTF_GATEWAY) || (rt->rt_flags & RTF_LLINFO) == 0 || rt->rt_gateway->sa_family != AF_LINK) { if (create) { - log(LOG_DEBUG, - "arplookup: unable to enter address for %s\n", - inet_ntoa(sin.sin_addr)); if (rt->rt_refcnt <= 0 && (rt->rt_flags & RTF_CLONED) != 0) { rtrequest(RTM_DELETE, |