diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-28 15:13:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-28 15:13:35 +0000 |
commit | ea8476a2dcf730c16142794975e5eed15cab5db5 (patch) | |
tree | 63beb9fb918ab146f066ab8daf23d91c916c6c3c /lib | |
parent | cb85ca18abd2533429143d815c6121b49b951dcb (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.c | 1 |
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; |