aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_ntlm_core.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-10-26 10:26:46 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-10-26 09:14:34 +0000
commit3b738a16eb986bf71e64adbf54bab7c2bed90998 (patch)
tree58674ca7b811659dcd0ab06d03f12dc35c5798b1 /lib/curl_ntlm_core.h
parent9c5f851ec9314042b58c696e219fd45c0bcdc615 (diff)
ntlm: Return CURLcode from Curl_ntlm_core_mk_lm_hash()
Diffstat (limited to 'lib/curl_ntlm_core.h')
-rw-r--r--lib/curl_ntlm_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/curl_ntlm_core.h b/lib/curl_ntlm_core.h
index fe41cddf6..0a6dd934c 100644
--- a/lib/curl_ntlm_core.h
+++ b/lib/curl_ntlm_core.h
@@ -53,9 +53,9 @@ void Curl_ntlm_core_lm_resp(const unsigned char *keys,
const unsigned char *plaintext,
unsigned char *results);
-void Curl_ntlm_core_mk_lm_hash(struct SessionHandle *data,
- const char *password,
- unsigned char *lmbuffer /* 21 bytes */);
+CURLcode Curl_ntlm_core_mk_lm_hash(struct SessionHandle *data,
+ const char *password,
+ unsigned char *lmbuffer /* 21 bytes */);
#if USE_NTRESPONSES
CURLcode Curl_hmac_md5(const unsigned char *key, unsigned int keylen,