mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
ntlm: error out without 64bit support as the code needs it
It makes it a clearer message for developers reaching that point without the necessary support. Thanks-by: Jay Satiro Closes #78
This commit is contained in:
parent
7715a70ba2
commit
13ddb9e54a
@ -668,6 +668,10 @@ CURLcode Curl_ntlm_core_mk_ntlmv2_resp(unsigned char *ntlmv2hash,
|
|||||||
|
|
||||||
CURLcode result = CURLE_OK;
|
CURLcode result = CURLE_OK;
|
||||||
|
|
||||||
|
#if CURL_SIZEOF_CURL_OFF_T < 8
|
||||||
|
#error "this section needs 64bit support to work"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Calculate the timestamp */
|
/* Calculate the timestamp */
|
||||||
#ifdef DEBUGBUILD
|
#ifdef DEBUGBUILD
|
||||||
char *force_timestamp = getenv("CURL_FORCETIME");
|
char *force_timestamp = getenv("CURL_FORCETIME");
|
||||||
|
Loading…
Reference in New Issue
Block a user