Skip to content

Commit 57dad7d

Browse files
committed
Neoteris.pm: skip uninitialized warning in test
1 parent e138710 commit 57dad7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SNMP/Info/Layer7/Neoteris.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ sub serial {
8383
sub model {
8484
my $neoteris = shift;
8585
my $id = $neoteris->id();
86-
my $product_name = $neoteris->product_name();
86+
my $product_name = $neoteris->product_name() || '';
8787

8888
my $model = &SNMP::translateObj($id);
8989
if ($product_name =~ /^(Ivanti|Pulse) Connect Secure,(\S+)/) {

0 commit comments

Comments
 (0)