aboutsummaryrefslogtreecommitdiff
path: root/lib/http_ntlm.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-08-11 09:06:06 +0200
committerYang Tse <yangsita@gmail.com>2011-08-11 09:06:06 +0200
commit448f982d543ee9277c8e00e6dc875eca2a02c61f (patch)
treefe0f5af5ecaa765f40a8a87d71e913b835262e22 /lib/http_ntlm.c
parentf396d9473652d0a3806b9e36e9bb3b45b61a2c10 (diff)
http NTLM: fix compiler warning
Diffstat (limited to 'lib/http_ntlm.c')
-rw-r--r--lib/http_ntlm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c
index fcf51a4bf..e983ed436 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;