Hi,

        There is a problem with wget 1.6 that it displays all 8bit
characters of all language translations as "?"s . The reason is that
LC_CTYPE is not appropriately set.

I'm not sure if this has been reported before, but the patch is attached
here just in case.

Abel Cheung

[NOTE: THIS PATCH IS CONTRIBUTED BY Yuan-Chen Cheng
<[EMAIL PROTECTED]> ]
--- wget-1.6/src/main.c.orig    Sun Dec 31 12:05:18 2000
+++ wget-1.6/src/main.c Tue Mar 27 01:18:00 2001
@@ -90,6 +90,7 @@
      makes http_atotm() malfunction.  */
 #ifdef LC_MESSAGES
   setlocale (LC_MESSAGES, "");
+  setlocale (LC_CTYPE, "");
 #else
   setlocale (LC_ALL, "");
 #endif

Reply via email to