summaryrefslogtreecommitdiffstats
path: root/plugins/check_tcp.c
diff options
context:
space:
mode:
authorSven Nierlein <sven@nierlein.org>2014-06-28 20:24:52 (GMT)
committerSven Nierlein <sven@nierlein.org>2014-06-28 20:24:52 (GMT)
commit2438931a3fe7e600c6fe48b163125ea179faea73 (patch)
tree258fe724ecdf75a8f05f3851af90eb511702ba3b /plugins/check_tcp.c
parent8d6c1833477bd3c3202cf7c94ec39c40ed9c2902 (diff)
parent6e246799b939d29fe80da03ee39a24ef68f78cb0 (diff)
downloadmonitoring-plugins-2438931.tar.gz
Merge pull request #1262 from waja/fix_aix
Include common.h before any system headers.
Diffstat (limited to 'plugins/check_tcp.c')
-rw-r--r--plugins/check_tcp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c
index 2714961..ebdccd1 100644
--- a/plugins/check_tcp.c
+++ b/plugins/check_tcp.c
@@ -32,13 +32,12 @@ char *progname;
32const char *copyright = "1999-2008"; 32const char *copyright = "1999-2008";
33const char *email = "devel@monitoring-plugins.org"; 33const char *email = "devel@monitoring-plugins.org";
34 34
35#include <ctype.h>
36
37#include "common.h" 35#include "common.h"
38#include "netutils.h" 36#include "netutils.h"
39#include "utils.h" 37#include "utils.h"
40#include "utils_tcp.h" 38#include "utils_tcp.h"
41 39
40#include <ctype.h>
42#include <sys/select.h> 41#include <sys/select.h>
43 42
44#ifdef HAVE_SSL 43#ifdef HAVE_SSL