#748 always call NetAddr::MAC->new() with named mac param

This commit is contained in:
Oliver Gorwits
2020-10-17 13:05:46 +01:00
parent 4cd0c3eef9
commit c7b8c3bcbd
5 changed files with 6 additions and 5 deletions

View File

@@ -168,7 +168,7 @@ sub store_arp {
my ($hash_ref, $now) = @_;
$now ||= 'now()';
my $ip = $hash_ref->{'ip'};
my $mac = NetAddr::MAC->new($hash_ref->{'node'});
my $mac = NetAddr::MAC->new(mac => $hash_ref->{'node'});
my $name = $hash_ref->{'dns'};
return if !defined $mac or $mac->errstr;