diff options
Diffstat (limited to 'cmd-server-info.c')
-rw-r--r-- | cmd-server-info.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd-server-info.c b/cmd-server-info.c index 1e9bf29d..8eba172a 100644 --- a/cmd-server-info.c +++ b/cmd-server-info.c @@ -65,7 +65,8 @@ cmd_server_info_exec(unused struct cmd *self, struct cmd_q *cmdq) tim = ctime(&start_time); *strchr(tim, '\n') = '\0'; - cmdq_print(cmdq, "pid %ld, started %s", (long) getpid(), tim); + cmdq_print(cmdq, + "tmux " VERSION ", pid %ld, started %s", (long) getpid(), tim); cmdq_print(cmdq, "socket path %s, debug level %d", socket_path, debug_level); if (uname(&un) >= 0) { |