mirror of
https://github.com/curl/curl.git
synced 2026-05-20 15:06:21 +03:00
compiler warning: fix
Fix compiler warning: enumerated type mixed with another type
This commit is contained in:
parent
79cc6c244a
commit
3e70c28ce5
1 changed files with 1 additions and 1 deletions
|
|
@ -986,7 +986,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
|
|||
int ntrespoff;
|
||||
unsigned char ntresp[24]; /* fixed-size */
|
||||
#endif
|
||||
bool unicode = ntlm->flags & NTLMFLAG_NEGOTIATE_UNICODE;
|
||||
bool unicode = (ntlm->flags & NTLMFLAG_NEGOTIATE_UNICODE)?TRUE:FALSE;
|
||||
size_t useroff;
|
||||
const char *user;
|
||||
size_t userlen;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue