summaryrefslogtreecommitdiffstats
path: root/plugins/check_tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_tcp.c')
-rw-r--r--plugins/check_tcp.c4
1 files changed, 2 insertions, 2 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