From: Karl DeBisschop Date: Thu, 14 Nov 2002 05:25:44 +0000 (+0000) Subject: pagesize count off by one X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=00db49d7fabc041f53ad8b195a22a2de4b09a5da;p=nagiosplug.git pagesize count off by one git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@196 f882894a-f735-0410-b71e-b25c423dba1c --- diff --git a/plugins/check_http.c b/plugins/check_http.c index e6310c8..781d149 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -527,7 +527,7 @@ check_http (void) char *page = ""; char *auth = NULL; int i = 0; - size_t pagesize = 1; + size_t pagesize = 0; char *full_page = ""; char *buf = NULL; char *pos = "";