From 2f47e63a880b52b160ba8010a3d5a6c85b012dc2 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Thu, 28 Feb 2013 04:44:38 +0000 Subject: str_util.c: Although the glib documentation doesn't explicitly say so, it looks like the thousands grouping (') modifier is supported so use it in format_size. capinfos.c: Set our locale. svn path=/trunk/; revision=47934 --- capinfos.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'capinfos.c') diff --git a/capinfos.c b/capinfos.c index fee3c55af0..2581b32cc7 100644 --- a/capinfos.c +++ b/capinfos.c @@ -62,6 +62,7 @@ #include #include #include +#include #include #ifdef HAVE_UNISTD_H @@ -1297,6 +1298,9 @@ main(int argc, char *argv[]) } } + /* Set the C-language locale to the native environment. */ + setlocale(LC_ALL, ""); + if ((argc - optind) < 1) { usage(TRUE); exit(1); @@ -1372,5 +1376,6 @@ main(int argc, char *argv[]) exit(status); } } + return overall_error_status; } -- cgit v1.2.3