From: Daniel Stenberg Date: Thu, 28 Feb 2002 15:13:35 +0000 (+0000) Subject: Ralph Mitchell's SSL problems made me notice that we didn't increase the X-Git-Tag: curl-7_9_5~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea8476a2dcf730c16142794975e5eed15cab5db5;p=curl Ralph Mitchell's SSL problems made me notice that we didn't increase the header byte counter properly --- diff --git a/lib/transfer.c b/lib/transfer.c index c90744d0f..4a65b6a66 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -603,6 +603,7 @@ CURLcode Curl_readwrite(struct connectdata *conn, return result; data->info.header_size += k->hbuflen; + conn->headerbytecount += k->hbuflen; /* reset hbufp pointer && hbuflen */ k->hbufp = data->state.headerbuff;