diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-11-01 11:05:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 11:05:50 +0100 |
commit | 6d08e1c8c96d0327a5b819dc1fbb0d5754f3e2e5 (patch) | |
tree | 575867b1d1eef4cd20215f22f9151ebb4a02c93d /lib/utils_cmd.c | |
parent | 03bde80abbda6fba2225568c3285a2ff2b5445a8 (diff) | |
parent | 76d9f25cd0dbe99657baeb6fa139a1831558adae (diff) | |
download | monitoring-plugins-6d08e1c.tar.gz |
Merge branch 'master' into fix_check_mailq
Diffstat (limited to 'lib/utils_cmd.c')
-rw-r--r-- | lib/utils_cmd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/utils_cmd.c b/lib/utils_cmd.c index cfb2073c..7957ec14 100644 --- a/lib/utils_cmd.c +++ b/lib/utils_cmd.c | |||
@@ -390,13 +390,12 @@ cmd_file_read ( char *filename, output *out, int flags) | |||
390 | void | 390 | void |
391 | timeout_alarm_handler (int signo) | 391 | timeout_alarm_handler (int signo) |
392 | { | 392 | { |
393 | size_t i; | ||
394 | if (signo == SIGALRM) { | 393 | if (signo == SIGALRM) { |
395 | printf (_("%s - Plugin timed out after %d seconds\n"), | 394 | printf (_("%s - Plugin timed out after %d seconds\n"), |
396 | state_text(timeout_state), timeout_interval); | 395 | state_text(timeout_state), timeout_interval); |
397 | 396 | ||
398 | long maxfd = mp_open_max(); | 397 | long maxfd = mp_open_max(); |
399 | if(_cmd_pids) for(i = 0; i < maxfd; i++) { | 398 | if(_cmd_pids) for(long int i = 0; i < maxfd; i++) { |
400 | if(_cmd_pids[i] != 0) kill(_cmd_pids[i], SIGKILL); | 399 | if(_cmd_pids[i] != 0) kill(_cmd_pids[i], SIGKILL); |
401 | } | 400 | } |
402 | 401 | ||