diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2008-03-11 00:10:23 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2008-03-11 00:10:23 +0000 |
commit | dc2ec71d22943a02058f1944e05e4f5c8db15f88 (patch) | |
tree | dc8cedfc2f151e01cc09b4e640fc5e8b33cfe62c /plugins/check_http.c | |
parent | 9f3d864fd3e47d4e728b196b1b6948a8a5e47e4e (diff) | |
download | monitoring-plugins-dc2ec71d22943a02058f1944e05e4f5c8db15f88.tar.gz |
Fixed link -m64 problems on pst3 for solaris. Fixed _FILE_OFFSET_BITS
redefinition warnings. Fixed helper ar error in ./configure
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1938 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r-- | plugins/check_http.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index 151eacac..b3d2ae39 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -41,12 +41,11 @@ const char *revision = "$Revision$"; const char *copyright = "1999-2008"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; -#include <ctype.h> - #include "common.h" #include "netutils.h" #include "utils.h" #include "base64.h" +#include <ctype.h> #define INPUT_DELIMITER ";" |