From 24b30d259caf2317bc38873b2f6ee20dd9682cc7 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Fri, 12 Dec 2014 22:08:03 +0000 Subject: smb: Disable SMB when 64-bit integers are not supported This fixes compilation issues with compilers that don't support 64-bit integers through long long or __int64. --- lib/smb.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/smb.h') diff --git a/lib/smb.h b/lib/smb.h index 233f4abd6..4dd7c9a32 100644 --- a/lib/smb.h +++ b/lib/smb.h @@ -256,7 +256,8 @@ struct smb_tree_disconnect { #endif /* BUILDING_CURL_SMB_C */ -#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) +#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \ + (CURL_SIZEOF_CURL_OFF_T > 4) #if !defined(USE_WINDOWS_SSPI) || defined(USE_WIN32_CRYPTO) @@ -265,6 +266,6 @@ extern const struct Curl_handler Curl_handler_smbs; #endif /* !USE_WINDOWS_SSPI || USE_WIN32_CRYPTO */ -#endif /* CURL_DISABLE_SMB && USE_NTLM */ +#endif /* CURL_DISABLE_SMB && USE_NTLM && CURL_SIZEOF_CURL_OFF_T > 4 */ #endif /* HEADER_CURL_SMB_H */ -- cgit v1.2.3