summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2013-04-11 21:52:18 +0000
committerNicholas Marriott <nicm@openbsd.org>2013-04-11 21:52:18 +0000
commit7f9b225cc269211b86a4c4d2168146c217d63118 (patch)
treef37737f75081824502d3dd12a47ad67883f06ced /tmux.c
parentcbee283c26968304b473e2191d2bb5f52208b58d (diff)
Call setlocale(LC_TIME) at startup.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tmux.c b/tmux.c
index 1f4057dc..e9b28d7e 100644
--- a/tmux.c
+++ b/tmux.c
@@ -22,6 +22,7 @@
#include <errno.h>
#include <event.h>
#include <fcntl.h>
+#include <locale.h>
#include <paths.h>
#include <pwd.h>
#include <stdlib.h>
@@ -243,6 +244,8 @@ main(int argc, char **argv)
malloc_options = (char *) "AFGJPX";
#endif
+ setlocale(LC_TIME, "");
+
quiet = flags = 0;
label = path = NULL;
login_shell = (**argv == '-');