diff options
author | 2015-11-24 21:52:06 +0000 | |
---|---|---|
committer | 2015-11-24 21:52:06 +0000 | |
commit | 8c1ade3826129a5c83af9665094da4e67123ab6e (patch) | |
tree | 3b7bd749c81aafa3776d504d5a3ab26c8a8df552 /usr.bin/tmux/tmux.c | |
parent | All kill-session -C to clear alerts in all windows, suggested by Aaron (diff) | |
download | wireguard-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.c | 4 |
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); |