mirror of
https://github.com/curl/curl.git
synced 2026-08-26 23:04:24 +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
|
|
@ -24,7 +24,7 @@
|
|||
#include "curl_setup.h"
|
||||
|
||||
#if !defined(CURL_DISABLE_SMB) && defined(USE_CURL_NTLM_CORE) && \
|
||||
(CURL_SIZEOF_CURL_OFF_T > 4)
|
||||
(SIZEOF_CURL_OFF_T > 4)
|
||||
|
||||
#define BUILDING_CURL_SMB_C
|
||||
|
||||
|
|
@ -1022,4 +1022,4 @@ static CURLcode smb_parse_url_path(struct Curl_easy *data,
|
|||
}
|
||||
|
||||
#endif /* CURL_DISABLE_SMB && USE_CURL_NTLM_CORE &&
|
||||
CURL_SIZEOF_CURL_OFF_T > 4 */
|
||||
SIZEOF_CURL_OFF_T > 4 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue