aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-10-18 20:14:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-10-18 20:14:21 +0000
commitf0089b62919857bc7d3a5eda10fabdcfd8b20a27 (patch)
tree08d1c482bd72ff920f3796cae431c3cc8205bd6f /lib
parentd10508e08c56bd8330b839b13a4fe215c8cf2aac (diff)
compiler warning fix
Diffstat (limited to 'lib')
-rw-r--r--lib/http.c2
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;