Skip to content
Snippets Groups Projects
Commit 25f08de4 authored by Marc Hoersken's avatar Marc Hoersken
Browse files

http_negotiate.c: Fixed passing argument from incompatible pointer type

parent f3bd2abb
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy,
spnegoTokenLength,
NULL,
NULL,
&mechToken.value,
(unsigned char**)&mechToken.value,
&mechToken.length,
NULL,
NULL)) {
......@@ -304,7 +304,7 @@ CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy)
if(!makeSpnegoInitialToken(object,
responseToken,
responseTokenLength,
&spnegoToken.value,
(unsigned char**)&spnegoToken.value,
&spnegoToken.length)) {
Curl_safefree(responseToken);
ASN1_OBJECT_free(object);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment