diff options
Diffstat (limited to 'plugins/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index 29a7ab5..cbe8595 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c | |||
@@ -142,7 +142,7 @@ main (int argc, char **argv) | |||
142 | asprintf (&PROGNAME, "check_pop"); | 142 | asprintf (&PROGNAME, "check_pop"); |
143 | asprintf (&SERVICE, "POP"); | 143 | asprintf (&SERVICE, "POP"); |
144 | SEND = NULL; | 144 | SEND = NULL; |
145 | asprintf (&EXPECT, "110"); | 145 | asprintf (&EXPECT, "+OK"); |
146 | asprintf (&QUIT, "QUIT\r\n"); | 146 | asprintf (&QUIT, "QUIT\r\n"); |
147 | PROTOCOL = TCP_PROTOCOL; | 147 | PROTOCOL = TCP_PROTOCOL; |
148 | PORT = 110; | 148 | PORT = 110; |
@@ -205,7 +205,7 @@ main (int argc, char **argv) | |||
205 | 205 | ||
206 | /* use default expect if none listed in process_arguments() */ | 206 | /* use default expect if none listed in process_arguments() */ |
207 | if (EXPECT && server_expect_count == 0) { | 207 | if (EXPECT && server_expect_count == 0) { |
208 | server_expect = malloc (1); | 208 | server_expect = malloc (++server_expect_count); |
209 | server_expect[server_expect_count - 1] = EXPECT; | 209 | server_expect[server_expect_count - 1] = EXPECT; |
210 | } | 210 | } |
211 | 211 | ||