summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2015-11-24 21:52:06 +0000
committernicm <nicm@openbsd.org>2015-11-24 21:52:06 +0000
commit8c1ade3826129a5c83af9665094da4e67123ab6e (patch)
tree3b7bd749c81aafa3776d504d5a3ab26c8a8df552 /usr.bin/tmux/tmux.c
parentAll kill-session -C to clear alerts in all windows, suggested by Aaron (diff)
downloadwireguard-openbsd-8c1ade3826129a5c83af9665094da4e67123ab6e.tar.xz
wireguard-openbsd-8c1ade3826129a5c83af9665094da4e67123ab6e.zip
Remove the -I part of show-messages which isn't really that useful; the
server start time can now be accessed with a new start_time format (use: tmux display -p '#{t:start_time}')
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r--usr.bin/tmux/tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c
index af6fec24308..8a73fc510a3 100644
--- a/usr.bin/tmux/tmux.c
+++ b/usr.bin/tmux/tmux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.c,v 1.157 2015/11/24 21:19:46 nicm Exp $ */
+/* $OpenBSD: tmux.c,v 1.158 2015/11/24 21:52:06 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -44,7 +44,7 @@ struct options *global_w_options; /* window options */
struct environ *global_environ;
char *shell_cmd;
-time_t start_time;
+struct timeval start_time;
char socket_path[PATH_MAX];
__dead void usage(void);