From b198e9623a0f4129920700b46240e0f0e2c7a8f1 Mon Sep 17 00:00:00 2001 From: Karl DeBisschop Date: Wed, 25 Sep 2002 08:01:44 +0000 Subject: incorporate comment on my_recv from Russell Scibetti git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@104 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/plugins/check_http.c b/plugins/check_http.c index 733388b..b3b2263 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -663,6 +663,7 @@ check_http (void) /* fetch the page */ pagesize = (size_t) 0; while ((i = my_recv ()) > 0) { + buffer[i] = "\0"; full_page = strscat (full_page, buffer); pagesize += i; } -- cgit v0.10-9-g596f