diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-10-18 20:14:21 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-10-18 20:14:21 +0000 |
commit | f0089b62919857bc7d3a5eda10fabdcfd8b20a27 (patch) | |
tree | 08d1c482bd72ff920f3796cae431c3cc8205bd6f /lib | |
parent | d10508e08c56bd8330b839b13a4fe215c8cf2aac (diff) | |
download | curl-f0089b62919857bc7d3a5eda10fabdcfd8b20a27.tar.gz |
compiler warning fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index e277194fb..61b9f4893 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; |