]> err.no Git - util-linux/commitdiff
lscpu: replace LC_MESSAGES with LC_ALL in setlocate()
authorFrancesco Cosoleto <cosoleto@gmail.com>
Sun, 27 Jun 2010 12:24:35 +0000 (14:24 +0200)
committerKarel Zak <kzak@redhat.com>
Wed, 30 Jun 2010 10:51:35 +0000 (12:51 +0200)
LC_CTYPE is necessary to print correctly some non English characters,
set LC_ALL for the sake of brevity.

Example:
    $ LANG=fr_FR lscpu -p | head -n 1
\# La suite est en format analysable, transmissible ? d'autres

instead of:
\# La suite est en format analysable, transmissible à d'autres

Signed-off-by: Francesco Cosoleto <cosoleto@gmail.com>
sys-utils/lscpu.c

index a153390e309c7f73fc6313240a25963e41904b01..74f5e781c92212acd00db084e9f210259a665461 100644 (file)
@@ -835,7 +835,7 @@ int main(int argc, char *argv[])
                { NULL,         0, 0, 0 }
        };
 
-       setlocale(LC_MESSAGES, "");
+       setlocale(LC_ALL, "");
        bindtextdomain(PACKAGE, LOCALEDIR);
        textdomain(PACKAGE);