summaryrefslogtreecommitdiff
path: root/lib/version.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-03-08 12:30:56 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-03-11 10:11:56 +0100
commit78f642ffab9a703bb23e4d9ddb1abe582f14eb62 (patch)
tree8b2d24c24f34dc1968dedcb612f81349960d4ce7 /lib/version.c
parent6043dfa4f9471cf4f5da2492670aff26b16a94ab (diff)
downloadcurl-78f642ffab9a703bb23e4d9ddb1abe582f14eb62.tar.gz
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
Diffstat (limited to 'lib/version.c')
-rw-r--r--lib/version.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/version.c b/lib/version.c
index dfc3e0719..b33f2fe83 100644
--- a/lib/version.c
+++ b/lib/version.c
@@ -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