* cygpath.cc (main): Only setlocale for LC_CTYPE category. Fallback

to UTF-8 if locale is "C".
	* ldd.cc (main): Ditto.
	* mkgroup.c (main): Ditto.
	* mkpasswd.c (main): Ditto.
	* passwd.c (main): Ditto.
This commit is contained in:
Corinna Vinschen
2009-05-15 11:30:18 +00:00
parent a972ea99d5
commit 73535010d7
6 changed files with 32 additions and 4 deletions

View File

@@ -982,7 +982,10 @@ main (int argc, char **argv)
{
int o;
setlocale (LC_ALL, "");
/* Use locale from environment. If not set or set to "C", use UTF-8. */
setlocale (LC_CTYPE, "");
if (!strcmp (setlocale (LC_CTYPE, NULL), "C"))
setlocale (LC_CTYPE, "en_US.UTF-8");
prog_name = strrchr (argv[0], '/');
if (!prog_name)
prog_name = strrchr (argv[0], '\\');