diff options
Diffstat (limited to 'plugins/utils.h.in')
-rw-r--r-- | plugins/utils.h.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/utils.h.in b/plugins/utils.h.in index a21d63d6..46b152a3 100644 --- a/plugins/utils.h.in +++ b/plugins/utils.h.in @@ -1,4 +1,4 @@ -/* header file for nagios plugins uitls.c */ +/* header file for nagios plugins utils.c */ /* this file should be included in all plugins */ @@ -55,6 +55,9 @@ char *ssprintf (char *str, const char *fmt, ...); char *strpcpy (char *dest, const char *src, const char *str); char *strpcat (char *dest, const char *src, const char *str); +/* Handle comparisions for STATE_* */ +int max_state(int, int); + #define max(a,b) ((a)>(b))?(a):(b) #define usage(msg) {\ @@ -73,7 +76,8 @@ exit(STATE_UNKNOWN);\ (a)==0?"OK":\ (a)==1?"WARNING":\ (a)==2?"CRITICAL":\ -(a)==-2?"DEPENDENT":\ +(a)==3?"UNKNOWN":\ +(a)==4?"DEPENDENT":\ "UNKNOWN" /* The idea here is that, although not every plugin will use all of these, |