diff options
author | Yang Tse <yangsita@gmail.com> | 2011-08-11 09:06:06 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-08-11 09:06:06 +0200 |
commit | 448f982d543ee9277c8e00e6dc875eca2a02c61f (patch) | |
tree | fe0f5af5ecaa765f40a8a87d71e913b835262e22 /lib/http_ntlm.c | |
parent | f396d9473652d0a3806b9e36e9bb3b45b61a2c10 (diff) | |
download | curl-448f982d543ee9277c8e00e6dc875eca2a02c61f.tar.gz |
http NTLM: fix compiler warning
Diffstat (limited to 'lib/http_ntlm.c')
-rw-r--r-- | lib/http_ntlm.c | 2 |
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; |