diff options
Diffstat (limited to 'plugins/check_tcp.c')
-rw-r--r-- | plugins/check_tcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index 7bd48d1..55ce898 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c | |||
@@ -206,6 +206,7 @@ main (int argc, char **argv) | |||
206 | server_port = PORT; | 206 | server_port = PORT; |
207 | server_send = SEND; | 207 | server_send = SEND; |
208 | server_quit = QUIT; | 208 | server_quit = QUIT; |
209 | status = strdup (""); | ||
209 | 210 | ||
210 | if (process_arguments (argc, argv) == ERROR) | 211 | if (process_arguments (argc, argv) == ERROR) |
211 | usage (_("Could not parse arguments\n")); | 212 | usage (_("Could not parse arguments\n")); |
@@ -259,7 +260,6 @@ main (int argc, char **argv) | |||
259 | 260 | ||
260 | buffer = malloc (MAXBUF); | 261 | buffer = malloc (MAXBUF); |
261 | memset (buffer, '\0', MAXBUF); | 262 | memset (buffer, '\0', MAXBUF); |
262 | status = strdup (""); | ||
263 | /* watch for the expect string */ | 263 | /* watch for the expect string */ |
264 | while ((i = my_recv ()) > 0) { | 264 | while ((i = my_recv ()) > 0) { |
265 | buffer[i] = '\0'; | 265 | buffer[i] = '\0'; |
@@ -271,7 +271,7 @@ main (int argc, char **argv) | |||
271 | } | 271 | } |
272 | 272 | ||
273 | /* return a CRITICAL status if we couldn't read any data */ | 273 | /* return a CRITICAL status if we couldn't read any data */ |
274 | if (status == NULL) | 274 | if (strlen(status) == 0) |
275 | die (STATE_CRITICAL, _("No data received from host\n")); | 275 | die (STATE_CRITICAL, _("No data received from host\n")); |
276 | 276 | ||
277 | strip (status); | 277 | strip (status); |