summaryrefslogtreecommitdiffstats
path: root/plugins/check_nt.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_nt.c')
-rw-r--r--plugins/check_nt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_nt.c b/plugins/check_nt.c
index 1aa7ab5..cacf665 100644
--- a/plugins/check_nt.c
+++ b/plugins/check_nt.c
@@ -203,7 +203,7 @@ int main(int argc, char **argv){
203 updays = uptime / 86400; 203 updays = uptime / 86400;
204 uphours = (uptime % 86400) / 3600; 204 uphours = (uptime % 86400) / 3600;
205 upminutes = ((uptime % 86400) % 3600) / 60; 205 upminutes = ((uptime % 86400) % 3600) / 60;
206 xasprintf(&output_message,_("System Uptime - %u day(s) %u hour(s) %u minute(s)"),updays,uphours, upminutes); 206 xasprintf(&output_message,_("System Uptime - %u day(s) %u hour(s) %u minute(s)|uptime=%lu"), updays, uphours, upminutes, uptime);
207 if (check_critical_value==TRUE && uptime <= critical_value) 207 if (check_critical_value==TRUE && uptime <= critical_value)
208 return_code=STATE_CRITICAL; 208 return_code=STATE_CRITICAL;
209 else if (check_warning_value==TRUE && uptime <= warning_value) 209 else if (check_warning_value==TRUE && uptime <= warning_value)