summaryrefslogtreecommitdiff
path: root/lib/smb.h
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/smb.h
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/smb.h')
-rw-r--r--lib/smb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/smb.h b/lib/smb.h
index 907cf0c8e..0e3c2ec11 100644
--- a/lib/smb.h
+++ b/lib/smb.h
@@ -8,7 +8,7 @@
* \___|\___/|_| \_\_____|
*
* Copyright (C) 2014, Bill Nagel <wnagel@tycoint.com>, Exacq Technologies
- * Copyright (C) 2018 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2018 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -244,12 +244,12 @@ struct smb_tree_disconnect {
#endif /* BUILDING_CURL_SMB_C */
#if !defined(CURL_DISABLE_SMB) && defined(USE_CURL_NTLM_CORE) && \
- (CURL_SIZEOF_CURL_OFF_T > 4)
+ (SIZEOF_CURL_OFF_T > 4)
extern const struct Curl_handler Curl_handler_smb;
extern const struct Curl_handler Curl_handler_smbs;
#endif /* CURL_DISABLE_SMB && USE_CURL_NTLM_CORE &&
- CURL_SIZEOF_CURL_OFF_T > 4 */
+ SIZEOF_CURL_OFF_T > 4 */
#endif /* HEADER_CURL_SMB_H */