diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-14 15:51:10 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-14 15:51:10 +0000 |
commit | ec4e653c6ffba1948a507c5a7918022dd4e6f7ce (patch) | |
tree | 6948bf49317f309086d09545b423b9e595058850 /lib/http_ntlm.c | |
parent | 3916d1e6cbe8eb5cb4dbbc43690b44b0b8fe6cc1 (diff) |
hushing up more warnings
Diffstat (limited to 'lib/http_ntlm.c')
-rw-r--r-- | lib/http_ntlm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 679289db6..73f3d3d96 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -412,15 +412,15 @@ CURLcode Curl_output_ntlm(struct connectdata *conn, */ ntlm->p_identity = &ntlm->identity; memset(ntlm->p_identity, 0, sizeof(*ntlm->p_identity)); - if ((ntlm->identity.User = strdup(user)) == NULL) + if ((ntlm->identity.User = (unsigned char *)strdup(user)) == NULL) return CURLE_OUT_OF_MEMORY; ntlm->identity.UserLength = strlen(user); - if ((ntlm->identity.Password = strdup(passwdp)) == NULL) + if ((ntlm->identity.Password = (unsigned char *)strdup(passwdp)) == NULL) return CURLE_OUT_OF_MEMORY; ntlm->identity.PasswordLength = strlen(passwdp); if ((ntlm->identity.Domain = malloc(domlen+1)) == NULL) return CURLE_OUT_OF_MEMORY; - strncpy(ntlm->identity.Domain, domain, domlen); + strncpy((char *)ntlm->identity.Domain, domain, domlen); ntlm->identity.Domain[domlen] = '\0'; ntlm->identity.DomainLength = domlen; ntlm->identity.Flags = SEC_WINNT_AUTH_IDENTITY_ANSI; @@ -430,7 +430,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn, } if (AcquireCredentialsHandle( - NULL, "NTLM", SECPKG_CRED_OUTBOUND, NULL, ntlm->p_identity, + NULL, (char *)"NTLM", SECPKG_CRED_OUTBOUND, NULL, ntlm->p_identity, NULL, NULL, &ntlm->handle, NULL ) != SEC_E_OK) { return CURLE_OUT_OF_MEMORY; |