1
0
mirror of https://github.com/moparisthebest/curl synced 2025-03-11 07:39:50 -04:00

compiler warning fix

This commit is contained in:
Daniel Stenberg 2003-10-18 20:14:21 +00:00
parent d10508e08c
commit f0089b6291

View File

@ -247,7 +247,7 @@ CURLcode http_auth_headers(struct connectdata *conn,
if((data->state.authwant == CURLAUTH_GSSNEGOTIATE) &&
data->state.negotiate.context &&
!GSS_ERROR(data->state.negotiate.status)) {
auth="GSS-Negotiate";
auth=(char *)"GSS-Negotiate";
result = Curl_output_negotiate(conn);
if (result)
return result;