From: Daniel Stenberg Date: Sat, 18 Oct 2003 20:14:21 +0000 (+0000) Subject: compiler warning fix X-Git-Tag: curl-7_10_8~93 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f0089b62919857bc7d3a5eda10fabdcfd8b20a27;p=thirdparty%2Fcurl.git compiler warning fix --- diff --git a/lib/http.c b/lib/http.c index e277194fbd..61b9f48933 100644 --- a/lib/http.c +++ b/lib/http.c @@ -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;