diff options
Diffstat (limited to 'plugins/utils.c')
-rw-r--r-- | plugins/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/utils.c b/plugins/utils.c index 1900ef8..4537390 100644 --- a/plugins/utils.c +++ b/plugins/utils.c | |||
@@ -168,9 +168,9 @@ void | |||
168 | timeout_alarm_handler (int signo) | 168 | timeout_alarm_handler (int signo) |
169 | { | 169 | { |
170 | if (signo == SIGALRM) { | 170 | if (signo == SIGALRM) { |
171 | printf (_("CRITICAL - Plugin timed out after %d seconds\n"), | 171 | printf (_("%s - Plugin timed out after %d seconds\n"), |
172 | timeout_interval); | 172 | state_text(timeout_state), timeout_interval); |
173 | exit (STATE_CRITICAL); | 173 | exit (timeout_state); |
174 | } | 174 | } |
175 | } | 175 | } |
176 | 176 | ||