diff options
author | Bernd Arnold <wopfel@gmail.com> | 2018-06-09 08:02:23 (GMT) |
---|---|---|
committer | Bernd Arnold <wopfel@gmail.com> | 2018-06-09 08:02:23 (GMT) |
commit | 5a73671ec6299c480c90ec5b9f0f3d58397fbcfb (patch) | |
tree | f1bc8f4118f95b36d45ff3983282e40f16c62ea0 /plugins-scripts | |
parent | 554b702f9d65fdfe640f20633543e00cd79d64ac (diff) | |
download | monitoring-plugins-5a73671ec6299c480c90ec5b9f0f3d58397fbcfb.tar.gz |
Fix: Initialize values
Otherwise, there's a warning about unitialized values:
Use of uninitialized value $hours in numeric gt (>) at ...
Use of uninitialized value $days in numeric gt (>) at ...
Diffstat (limited to 'plugins-scripts')
-rwxr-xr-x | plugins-scripts/check_uptime.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins-scripts/check_uptime.pl b/plugins-scripts/check_uptime.pl index 27dc93f..20234c8 100755 --- a/plugins-scripts/check_uptime.pl +++ b/plugins-scripts/check_uptime.pl | |||
@@ -85,6 +85,7 @@ if ( $uptime_seconds !~ /^\d+$/ ) { | |||
85 | 85 | ||
86 | my ( $secs, $mins, $hours, $days, $weeks ); | 86 | my ( $secs, $mins, $hours, $days, $weeks ); |
87 | $secs = $uptime_seconds; | 87 | $secs = $uptime_seconds; |
88 | $mins = $hours = $days = $weeks = 0; | ||
88 | if ( $secs > 100 ) { | 89 | if ( $secs > 100 ) { |
89 | $mins = int( $secs / 60 ); | 90 | $mins = int( $secs / 60 ); |
90 | $secs -= $mins * 60; | 91 | $secs -= $mins * 60; |