Skip to content

Commit

Permalink
FIX scstadmin -list_sessions error msg in out cmd
Browse files Browse the repository at this point in the history
In out of "scstadmin -list_sessions" cmd occurs error "Use of uninitialized value in numeric lt (<) at /usr/local/sbin/scstadmin line 3679"
  • Loading branch information
f4ilfish authored and lnocturno committed Nov 27, 2024
1 parent 1d93997 commit 2ed7e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scstadmin/scstadmin.sysfs/scstadmin
Original file line number Diff line number Diff line change
Expand Up @@ -3676,7 +3676,7 @@ sub listAttributes {

next;
}
$l_value = length($value) if ($l_value < length($value));
$l_value = length($value) if (defined($value) && $l_value < length($value));
}
}

Expand Down

0 comments on commit 2ed7e10

Please sign in to comment.