diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-11-12 14:16:07 -0500 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-11-12 14:16:07 -0500 |
commit | a9cdc94f7ff40f22a3cf9472f612a80730a1b010 (patch) | |
tree | e41785d3ffdf9f99305ba4748b733dfd083a5582 /src/locale/localectl.c | |
parent | 1298001ec5e320f9f9b6a9b925c8939b2579396d (diff) |
enable localization for common *ctl commands
Diffstat (limited to 'src/locale/localectl.c')
-rw-r--r-- | src/locale/localectl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/locale/localectl.c b/src/locale/localectl.c index 7d3ac0ad2f..fa73bcaac6 100644 --- a/src/locale/localectl.c +++ b/src/locale/localectl.c @@ -19,6 +19,7 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <locale.h> #include <stdlib.h> #include <stdbool.h> #include <unistd.h> @@ -740,6 +741,7 @@ int main(int argc, char *argv[]) { dbus_error_init(&error); + setlocale(LC_ALL, ""); log_parse_environment(); log_open(); |