aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_apt.c
diff options
context:
space:
mode:
authorGravatar Sven Nierlein <sven@nierlein.de> 2015-10-04 19:02:43 +0200
committerGravatar Sven Nierlein <sven@nierlein.de> 2015-10-04 19:24:30 +0200
commitedca257e2032866f6ca63bc540a317574cd89ac8 (patch)
treef209827befe4db2a63eeeaff34df613c194ff0ec /plugins/check_apt.c
parentd6baf9dbce1578ca59a577ac8155b835c46f0a16 (diff)
downloadmonitoring-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_apt.c b/plugins/check_apt.c
index 8747f904..a639a411 100644
--- a/plugins/check_apt.c
+++ b/plugins/check_apt.c
@@ -160,10 +160,10 @@ int process_arguments (int argc, char **argv) {
switch(c) {
case 'h':
print_help();
- exit(STATE_OK);
+ exit(STATE_UNKNOWN);
case 'V':
print_revision(progname, NP_VERSION);
- exit(STATE_OK);
+ exit(STATE_UNKNOWN);
case 'v':
verbose++;
break;