From: Daniel Stenberg Date: Wed, 26 Apr 2006 13:08:12 +0000 (+0000) Subject: crlf_conversions needs to be a curl_off_t for ASCII transfers > 4GB on 32bit X-Git-Tag: curl-7_15_4~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=def0db30e7aa486923facfda3c5c8566f683dcb3;p=thirdparty%2Fcurl.git crlf_conversions needs to be a curl_off_t for ASCII transfers > 4GB on 32bit systems --- diff --git a/lib/urldata.h b/lib/urldata.h index 64d883b9e7..fd38d3e4f3 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -943,7 +943,7 @@ struct UrlState { /* for FTP downloads: track CRLF sequences that span blocks */ bool prev_block_had_trailing_cr; /* for FTP downloads: how many CRLFs did we converted to LFs? */ - size_t crlf_conversions; + curl_off_t crlf_conversions; #endif };