I want my date & time printed according my locale settings. This commit enables that
Signed-off-by: Kurt Van Dijck <dev.k...@vandijck-laurijssen.be> --- slstatus.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/slstatus.c b/slstatus.c index e69423b..30a9d09 100644 --- a/slstatus.c +++ b/slstatus.c @@ -6,6 +6,7 @@ #include <ifaddrs.h> #include <limits.h> #include <linux/wireless.h> +#include <locale.h> #include <netdb.h> #include <pwd.h> #include <signal.h> @@ -819,6 +820,7 @@ main(int argc, char *argv[]) usage(); } + setlocale(LC_ALL, ""); memset(&act, 0, sizeof(act)); act.sa_handler = terminate; sigaction(SIGINT, &act, NULL); -- 1.8.5.rc3