mirror of
https://github.com/curl/curl.git
synced 2026-06-01 22:54:17 +03: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
1 changed files with 4 additions and 0 deletions
|
|
@ -668,6 +668,10 @@ CURLcode Curl_ntlm_core_mk_ntlmv2_resp(unsigned char *ntlmv2hash,
|
|||
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
#if CURL_SIZEOF_CURL_OFF_T < 8
|
||||
#error "this section needs 64bit support to work"
|
||||
#endif
|
||||
|
||||
/* Calculate the timestamp */
|
||||
#ifdef DEBUGBUILD
|
||||
char *force_timestamp = getenv("CURL_FORCETIME");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue