From 05cb14dbb2d73b0f48d44d5ad1a24f9ae95172f0 Mon Sep 17 00:00:00 2001 From: Ting-Wei Lan Date: Mon, 11 Jan 2016 14:30:41 +0800 Subject: [PATCH] Call setlocale in main function of libgtop_daemon2 It is required to correctly show translated messages on some locales. https://bugzilla.gnome.org/show_bug.cgi?id=760432 --- src/daemon/gnuserv.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/daemon/gnuserv.c b/src/daemon/gnuserv.c index 6965946b..8af908bb 100644 --- a/src/daemon/gnuserv.c +++ b/src/daemon/gnuserv.c @@ -43,6 +43,7 @@ #include #include +#include #include "daemon.h" @@ -473,6 +474,8 @@ main (int argc, char **argv) int ils = -1; /* internet domain listen socket */ + setlocale (LC_ALL, ""); + /* On non-glibc systems, this is not set up for us. */ if (!program_invocation_name) { char *arg;