From a1d2bd2cf758e8681678842d8f34151a93a50263 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Tue, 14 Nov 2017 22:30:07 +0000 Subject: [PATCH] usage: --skip=ignored is actually 'suppressed' When making --skip to take arguments ignored was for moment a work name for 'suppressed' state, and that was accidentally left to usage() output. Reference: 3369278fc02ff8765824e08fb3eb68dc544bdb2f Signed-off-by: Sami Kerola --- src/other.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/other.c b/src/other.c index aea5aa8..2b2cbf9 100644 --- a/src/other.c +++ b/src/other.c @@ -633,7 +633,7 @@ void __attribute__ ((__noreturn__)) usage(int status) fputs( " --warning=PERC set warning alarming threshold\n", out); fputs( " --critical=PERC set critical alarming threshold\n", out); fputs( " --skip=WHAT do not print threshold 'ok', 'warning', 'critical',\n", out); - fputs( " 'minsize', or 'ignored'\n", out); + fputs( " 'minsize', or 'suppressed'\n", out); fputs( " --warn-count=NR a number of free leases before warning raised\n", out); fputs( " --crit-count=NR a number of free leases before critical raised\n", out); fputs( " --minsize=size disable alarms for small ranges and shared-nets\n", out);