aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-02-28 15:13:35 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-02-28 15:13:35 +0000
commitea8476a2dcf730c16142794975e5eed15cab5db5 (patch)
tree63beb9fb918ab146f066ab8daf23d91c916c6c3c /lib
parentcb85ca18abd2533429143d815c6121b49b951dcb (diff)
Ralph Mitchell's SSL problems made me notice that we didn't increase the
header byte counter properly
Diffstat (limited to 'lib')
-rw-r--r--lib/transfer.c1
1 files changed, 1 insertions, 0 deletions
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;