ntlm: remove unused feature defines

They're not used anymore and always supported.

Closes https://github.com/curl/curl/pull/8453
This commit is contained in:
Marcel Raad 2022-02-15 13:50:06 +01:00
parent 3369f9f289
commit 897e8baa54
No known key found for this signature in database
GPG key ID: 33C416EFAE4D6F02
4 changed files with 12 additions and 110 deletions

View file

@ -464,12 +464,8 @@ static CURLcode smb_send_setup(struct Curl_easy *data)
Curl_ntlm_core_mk_lm_hash(conn->passwd, lm_hash);
Curl_ntlm_core_lm_resp(lm_hash, smbc->challenge, lm);
#ifdef USE_NTRESPONSES
Curl_ntlm_core_mk_nt_hash(conn->passwd, nt_hash);
Curl_ntlm_core_lm_resp(nt_hash, smbc->challenge, nt);
#else
memset(nt, 0, sizeof(nt));
#endif
memset(&msg, 0, sizeof(msg));
msg.word_count = SMB_WC_SETUP_ANDX;