diff options
Diffstat (limited to 'plugins/check_smtp.c')
-rw-r--r-- | plugins/check_smtp.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index e99f067..3dc444f 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
@@ -59,8 +59,7 @@ void print_help (void); | |||
59 | void print_usage (void); | 59 | void print_usage (void); |
60 | int my_close(void); | 60 | int my_close(void); |
61 | 61 | ||
62 | #ifdef HAVE_REGEX_H | 62 | #include "regex.h" |
63 | #include <regex.h> | ||
64 | char regex_expect[MAX_INPUT_BUFFER] = ""; | 63 | char regex_expect[MAX_INPUT_BUFFER] = ""; |
65 | regex_t preg; | 64 | regex_t preg; |
66 | regmatch_t pmatch[10]; | 65 | regmatch_t pmatch[10]; |
@@ -69,7 +68,6 @@ char errbuf[MAX_INPUT_BUFFER]; | |||
69 | int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE; | 68 | int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE; |
70 | int eflags = 0; | 69 | int eflags = 0; |
71 | int errcode, excode; | 70 | int errcode, excode; |
72 | #endif | ||
73 | 71 | ||
74 | int server_port = SMTP_PORT; | 72 | int server_port = SMTP_PORT; |
75 | char *server_address = NULL; | 73 | char *server_address = NULL; |
@@ -308,7 +306,6 @@ main (int argc, char **argv) | |||
308 | printf("%s", buffer); | 306 | printf("%s", buffer); |
309 | strip (buffer); | 307 | strip (buffer); |
310 | if (n < nresponses) { | 308 | if (n < nresponses) { |
311 | #ifdef HAVE_REGEX_H | ||
312 | cflags |= REG_EXTENDED | REG_NOSUB | REG_NEWLINE; | 309 | cflags |= REG_EXTENDED | REG_NOSUB | REG_NEWLINE; |
313 | errcode = regcomp (&preg, responses[n], cflags); | 310 | errcode = regcomp (&preg, responses[n], cflags); |
314 | if (errcode != 0) { | 311 | if (errcode != 0) { |
@@ -329,12 +326,6 @@ main (int argc, char **argv) | |||
329 | printf (_("Execute Error: %s\n"), errbuf); | 326 | printf (_("Execute Error: %s\n"), errbuf); |
330 | result = STATE_UNKNOWN; | 327 | result = STATE_UNKNOWN; |
331 | } | 328 | } |
332 | #else | ||
333 | if (strstr(buffer, responses[n])!=buffer) { | ||
334 | result = STATE_WARNING; | ||
335 | printf (_("SMTP %s - Invalid response '%s' to command '%s'\n"), state_text (result), buffer, commands[n]); | ||
336 | } | ||
337 | #endif | ||
338 | } | 329 | } |
339 | n++; | 330 | n++; |
340 | } | 331 | } |