diff --git a/Netdisco/Changes b/Netdisco/Changes index cd5b6da8..1c09ce9a 100644 --- a/Netdisco/Changes +++ b/Netdisco/Changes @@ -6,6 +6,11 @@ as 'IP Phone:' or 'AP:' when those capabilities are advertised by LLDP or CDP + [BUG FIXES] + + * [#61] Arpnip debug text says it is resolving aliases instead of ARP + entries (Robert Kerr) + 2.020002 - 2013-12-11 [NEW FEATURES] diff --git a/Netdisco/lib/App/Netdisco/Core/Arpnip.pm b/Netdisco/lib/App/Netdisco/Core/Arpnip.pm index 17ba23dc..47252098 100644 --- a/Netdisco/lib/App/Netdisco/Core/Arpnip.pm +++ b/Netdisco/lib/App/Netdisco/Core/Arpnip.pm @@ -89,7 +89,7 @@ sub _get_arps { }; } - debug sprintf ' resolving %d aliases with max %d outstanding requests', + debug sprintf ' resolving %d ARP entries with max %d outstanding requests', scalar @arps, $ENV{'PERL_ANYEVENT_MAX_OUTSTANDING_DNS'}; my $resolved_ips = hostnames_resolve_async(\@arps);