From: Yang Tse <yangsita@gmail.com>
Date: Thu, 11 Aug 2011 07:06:06 +0000 (+0200)
Subject: http NTLM: fix compiler warning
X-Git-Tag: curl-7_22_0~131
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=448f982d543ee9277c8e00e6dc875eca2a02c61f;p=curl

http NTLM: fix compiler warning
---

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;