From 52cd7d79349489c6c4ae36f463abb9cecb9a6c31 Mon Sep 17 00:00:00 2001 From: Sven Nierlein Date: Mon, 7 Nov 2016 21:49:03 +0100 Subject: check_users: still allow zero thresholds Signed-off-by: Sven Nierlein diff --git a/plugins/check_users.c b/plugins/check_users.c index a10249c..f6f4b36 100644 --- a/plugins/check_users.c +++ b/plugins/check_users.c @@ -222,9 +222,9 @@ process_arguments (int argc, char **argv) /* this will abort in case of invalid ranges */ set_thresholds (&thlds, warning_range, critical_range); - if (thlds->warning->end <= 0) + if (thlds->warning->end < 0) usage4 (_("Warning threshold must be a positive integer")); - if (thlds->critical->end <= 0) + if (thlds->critical->end < 0) usage4 (_("Critical threshold must be a positive integer")); return OK; -- cgit v0.10-9-g596f