diff options
Diffstat (limited to 'plugins/sslutils.c')
-rw-r--r-- | plugins/sslutils.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/sslutils.c b/plugins/sslutils.c index d0ae474..69d12f2 100644 --- a/plugins/sslutils.c +++ b/plugins/sslutils.c | |||
@@ -221,6 +221,13 @@ int np_net_ssl_check_cert(int days_till_exp_warn, int days_till_exp_crit){ | |||
221 | return STATE_WARNING; | 221 | return STATE_WARNING; |
222 | else | 222 | else |
223 | return STATE_CRITICAL; | 223 | return STATE_CRITICAL; |
224 | } else if (days_left == 0 && time_left > 0) { | ||
225 | int hours_left = (int) time_left/3600; | ||
226 | printf (_("%s - Certificate '%s' expires in %u %s (%s)\n"), (days_left>days_till_exp_crit) ? "WARNING" : "CRITICAL", cn, hours_left, hours_left > 0 ? "hours" : "minutes", timestamp); | ||
227 | if ( days_left > days_till_exp_crit) | ||
228 | return STATE_WARNING; | ||
229 | else | ||
230 | return STATE_CRITICAL; | ||
224 | } else if (time_left < 0) { | 231 | } else if (time_left < 0) { |
225 | printf(_("CRITICAL - Certificate '%s' expired on %s.\n"), cn, timestamp); | 232 | printf(_("CRITICAL - Certificate '%s' expired on %s.\n"), cn, timestamp); |
226 | status=STATE_CRITICAL; | 233 | status=STATE_CRITICAL; |