]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
compiler warning fix
authorDaniel Stenberg <daniel@haxx.se>
Sat, 18 Oct 2003 20:14:21 +0000 (20:14 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 18 Oct 2003 20:14:21 +0000 (20:14 +0000)
lib/http.c

index e277194fbd1f43f47ebbe804971013b1ec87b14c..61b9f48933cca77a9bd580a55fc093d48d71a545 100644 (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;