mirror of
https://github.com/curl/curl.git
synced 2026-08-24 21:43:32 +03:00
windows: drop two interim, single-use macros
Follow-up to e77d867068
Closes #18114
This commit is contained in:
parent
d21e75a6ae
commit
b5c245045e
3 changed files with 13 additions and 18 deletions
|
|
@ -177,7 +177,12 @@ CURLcode Curl_create_sspi_identity(const char *userp, const char *passwdp,
|
|||
curlx_unicodefree(passwd.tchar_ptr);
|
||||
|
||||
/* Setup the identity's flags */
|
||||
identity->Flags = SECFLAG_WINNT_AUTH_IDENTITY;
|
||||
identity->Flags = (unsigned long)
|
||||
#ifdef UNICODE
|
||||
SEC_WINNT_AUTH_IDENTITY_UNICODE;
|
||||
#else
|
||||
SEC_WINNT_AUTH_IDENTITY_ANSI;
|
||||
#endif
|
||||
|
||||
return CURLE_OK;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue