release 2.046005

This commit is contained in:
Oliver Gorwits
2020-10-17 14:40:07 +01:00
parent 2b72233738
commit facc41e310
9 changed files with 11 additions and 11 deletions

View File

@@ -418,7 +418,7 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
=head2 last_comment

View File

@@ -193,6 +193,6 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
1;

View File

@@ -221,6 +221,6 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
1;

View File

@@ -178,6 +178,6 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
1;

View File

@@ -87,6 +87,6 @@ Returns the C<mac> column instantiated into a L<NetAddr::MAC> object.
=cut
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac) || '') }
sub net_mac { return NetAddr::MAC->new(mac => ((shift)->mac || '')) }
1;