Xinqi Bao's Git

slstatus: set locale
authorKurt Van Dijck <[email protected]>
Mon, 11 Sep 2017 18:05:21 +0000 (20:05 +0200)
committerAaron Marcher <[email protected]>
Sat, 16 Sep 2017 12:10:35 +0000 (14:10 +0200)
I want my date & time printed according my locale settings.
This commit enables that

Signed-off-by: Kurt Van Dijck <[email protected]>
slstatus.c

index cbc35a4..cddc79a 100644 (file)
@@ -6,6 +6,7 @@
 #include <ifaddrs.h>
 #include <limits.h>
 #include <linux/wireless.h>
 #include <ifaddrs.h>
 #include <limits.h>
 #include <linux/wireless.h>
+#include <locale.h>
 #include <netdb.h>
 #include <pwd.h>
 #include <signal.h>
 #include <netdb.h>
 #include <pwd.h>
 #include <signal.h>
@@ -841,6 +842,7 @@ main(int argc, char *argv[])
                usage();
        }
 
                usage();
        }
 
+       setlocale(LC_ALL, "");
        memset(&act, 0, sizeof(act));
        act.sa_handler = terminate;
        sigaction(SIGINT,  &act, NULL);
        memset(&act, 0, sizeof(act));
        act.sa_handler = terminate;
        sigaction(SIGINT,  &act, NULL);