diff options
author | Sven Nierlein <sven@nierlein.de> | 2015-10-04 17:02:43 (GMT) |
---|---|---|
committer | Sven Nierlein <sven@nierlein.de> | 2015-10-04 17:24:30 (GMT) |
commit | edca257e2032866f6ca63bc540a317574cd89ac8 (patch) | |
tree | f209827befe4db2a63eeeaff34df613c194ff0ec /plugins/check_apt.c | |
parent | d6baf9dbce1578ca59a577ac8155b835c46f0a16 (diff) | |
download | monitoring-plugins-edca257e2032866f6ca63bc540a317574cd89ac8.tar.gz |
use unknown exit code for help/version in plugins
Signed-off-by: Sven Nierlein <sven@nierlein.de>
Diffstat (limited to 'plugins/check_apt.c')
-rw-r--r-- | plugins/check_apt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_apt.c b/plugins/check_apt.c index 8747f90..a639a41 100644 --- a/plugins/check_apt.c +++ b/plugins/check_apt.c | |||
@@ -160,10 +160,10 @@ int process_arguments (int argc, char **argv) { | |||
160 | switch(c) { | 160 | switch(c) { |
161 | case 'h': | 161 | case 'h': |
162 | print_help(); | 162 | print_help(); |
163 | exit(STATE_OK); | 163 | exit(STATE_UNKNOWN); |
164 | case 'V': | 164 | case 'V': |
165 | print_revision(progname, NP_VERSION); | 165 | print_revision(progname, NP_VERSION); |
166 | exit(STATE_OK); | 166 | exit(STATE_UNKNOWN); |
167 | case 'v': | 167 | case 'v': |
168 | verbose++; | 168 | verbose++; |
169 | break; | 169 | break; |