diff options
author | Aaron Marcher <info@nulltime.net> | 2016-03-10 17:29:20 +0100 |
---|---|---|
committer | Aaron Marcher <info@nulltime.net> | 2016-03-10 17:29:20 +0100 |
commit | ec320f428a9b70d6b39228480df35a56ea992733 (patch) | |
tree | cdc6b279a35ba744703a3b176f30f6303923258a | |
parent | d4d2646f6387f0245ce1e285382f85b2cb6c0300 (diff) | |
parent | 552ba7fd94286135690f3a39f74c8e6f7743d415 (diff) |
Merge pull request #8 from Vlaix/master
Fixed locale defaulting to English
-rw-r--r-- | slstatus.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3,6 +3,7 @@ /* global libraries */ #include <alsa/asoundlib.h> #include <fcntl.h> +#include <locale.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> @@ -191,11 +192,14 @@ get_datetime() /* get time in format */ time(&tm); + setlocale(LC_TIME, ""); if(!strftime(buf, bufsize, timeformat, localtime(&tm))) { + setlocale(LC_TIME, "C"); fprintf(stderr, "Strftime failed.\n"); return smprintf("n/a"); } + setlocale(LC_TIME, "C"); /* return time */ return smprintf("%s", buf); } |