diff options
Diffstat (limited to 'plugins/check_ping.c')
-rw-r--r-- | plugins/check_ping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 420f148c..835d9c1b 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -483,7 +483,7 @@ run_ping (char *command_line) /* close the pipe - WARNING if status is set */ if (spclose (child_process)) - result = max (result, STATE_WARNING); + result = max_state (result, STATE_WARNING); return result; } |