X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Futils.h.in;h=46b152a3b743c38bc17229130c26331f3f1432e6;hb=f4c6f7f09305c1c9916da6ac4f7aadcb31e319e0;hp=a21d63d6c3bcc342dea89b98a7173e088c3267ae;hpb=d36016a7adf28424d7f4adaa50612c41f1937c3b;p=nagiosplug.git diff --git a/plugins/utils.h.in b/plugins/utils.h.in index a21d63d..46b152a 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,