From: Yang Tse Date: Thu, 11 Aug 2011 07:06:06 +0000 (+0200) Subject: http NTLM: fix compiler warning X-Git-Tag: upstream/7.37.1~3851 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=448f982d543ee9277c8e00e6dc875eca2a02c61f;p=platform%2Fupstream%2Fcurl.git http NTLM: fix compiler warning --- diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index fcf51a4..e983ed4 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -1170,7 +1170,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn, } #else { - char *host = ""; /* empty */ + const char *host = ""; /* empty */ const char *domain = ""; /* empty */ size_t hostlen = 0; size_t domlen = 0;