mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:53:34 +03:00
config: remove CURL_SIZEOF_CURL_OFF_T use only SIZEOF_CURL_OFF_T
Make the code consistently use a single name for the size of the "curl_off_t" type. Closes #6702
This commit is contained in:
parent
6043dfa4f9
commit
78f642ffab
14 changed files with 26 additions and 28 deletions
|
|
@ -334,7 +334,7 @@ static const char * const protocols[] = {
|
|||
"sftp",
|
||||
#endif
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_CURL_NTLM_CORE) && \
|
||||
(CURL_SIZEOF_CURL_OFF_T > 4)
|
||||
(SIZEOF_CURL_OFF_T > 4)
|
||||
"smb",
|
||||
# ifdef USE_SSL
|
||||
"smbs",
|
||||
|
|
@ -399,7 +399,7 @@ static curl_version_info_data version_info = {
|
|||
#ifdef CURLRES_ASYNCH
|
||||
| CURL_VERSION_ASYNCHDNS
|
||||
#endif
|
||||
#if (CURL_SIZEOF_CURL_OFF_T > 4) && \
|
||||
#if (SIZEOF_CURL_OFF_T > 4) && \
|
||||
( (SIZEOF_OFF_T > 4) || defined(USE_WIN32_LARGE_FILES) )
|
||||
| CURL_VERSION_LARGEFILE
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue