aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_http.c
diff options
context:
space:
mode:
authorGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2002-09-25 08:01:44 +0000
committerGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2002-09-25 08:01:44 +0000
commitb198e9623a0f4129920700b46240e0f0e2c7a8f1 (patch)
tree83a16c23b7bd4ef33299e16477d079de9c65a7e9 /plugins/check_http.c
parent0115679a112019e545e0cd344e3883ffd3479d5b (diff)
downloadmonitoring-plugins-b198e9623a0f4129920700b46240e0f0e2c7a8f1.tar.gz
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
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r--plugins/check_http.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index 733388b8..b3b2263d 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;
}