diff options
author | Yang Tse <yangsita@gmail.com> | 2012-06-15 21:50:57 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-06-15 21:50:57 +0200 |
commit | ac3e356c95b3867b96070da2f85022b6280921d1 (patch) | |
tree | 10e6d7f83a9d7d59089ab350340713e90071d72f /lib/curl_ntlm_msgs.c | |
parent | a96fa00f3831acdf18c778ebee88d61dbc432d4f (diff) | |
download | curl-ac3e356c95b3867b96070da2f85022b6280921d1.tar.gz |
SSPI related code: Unicode support for WinCE - kill compiler warnings
Diffstat (limited to 'lib/curl_ntlm_msgs.c')
-rw-r--r-- | lib/curl_ntlm_msgs.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index 0fd34cb80..b064553c2 100644 --- a/lib/curl_ntlm_msgs.c +++ b/lib/curl_ntlm_msgs.c @@ -460,7 +460,8 @@ CURLcode Curl_ntlm_create_type1_message(const char *userp, else ntlm->p_identity = NULL; - status = s_pSecFn->AcquireCredentialsHandle(NULL, TEXT("NTLM"), + status = s_pSecFn->AcquireCredentialsHandle(NULL, + (SECURITY_PSTR) TEXT("NTLM"), SECPKG_CRED_OUTBOUND, NULL, ntlm->p_identity, NULL, NULL, &ntlm->handle, &tsDummy); @@ -475,7 +476,7 @@ CURLcode Curl_ntlm_create_type1_message(const char *userp, buf.pvBuffer = ntlmbuf; status = s_pSecFn->InitializeSecurityContext(&ntlm->handle, NULL, - TEXT(""), + (SECURITY_PSTR) TEXT(""), ISC_REQ_CONFIDENTIALITY | ISC_REQ_REPLAY_DETECT | ISC_REQ_CONNECTION, @@ -651,7 +652,7 @@ CURLcode Curl_ntlm_create_type3_message(struct SessionHandle *data, status = s_pSecFn->InitializeSecurityContext(&ntlm->handle, &ntlm->c_handle, - TEXT(""), + (SECURITY_PSTR) TEXT(""), ISC_REQ_CONFIDENTIALITY | ISC_REQ_REPLAY_DETECT | ISC_REQ_CONNECTION, |