]> sjero.net Git - wget/blobdiff - src/host.c
Basic IDN/IRI support
[wget] / src / host.c
index 8a1495f072f99e48c6b4c25f7b1d9edcb5cee521..1226a274397c145908351fc40fc3dcfdf2414204 100644 (file)
@@ -714,9 +714,9 @@ lookup_host (const char *host, int flags)
 
   if (!silent && !numeric_address)
     {
-      char *str = NULL, *name = NULL;
+      char *str = NULL, *name;
 
-      if (opt.enable_iri && (name = idn_decode (host)) != NULL)
+      if (opt.enable_iri && (name = idn_decode ((char *) host)) != NULL)
         {
           int len = strlen (host) + strlen (name) + 4;
           str = xmalloc (len);
@@ -725,7 +725,7 @@ lookup_host (const char *host, int flags)
           xfree (name);
         }
 
-      logprintf (LOG_VERBOSE, _("Resolving %s... "), 
+      logprintf (LOG_VERBOSE, _("Resolving %s... "),
                  quotearg_style (escape_quoting_style, str ? str : host));
 
       if (str)