diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-31 22:12:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-31 22:12:33 +0000 |
commit | f71b3054cd0111625ef8bf933517a08f07833e06 (patch) | |
tree | 46e71dcebc6f9fc8de494966acf87ad2020b2f37 /cmd-server-info.c | |
parent | 60dd44008229506043ae61d602e89b90306ccfe5 (diff) | |
download | rtmux-f71b3054cd0111625ef8bf933517a08f07833e06.tar.gz rtmux-f71b3054cd0111625ef8bf933517a08f07833e06.tar.bz2 rtmux-f71b3054cd0111625ef8bf933517a08f07833e06.zip |
Switch tmux to use autoconf and automake.
Although they suck, they suck less than the alternatives.
Diffstat (limited to 'cmd-server-info.c')
-rw-r--r-- | cmd-server-info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-server-info.c b/cmd-server-info.c index aa950330..5140b6bb 100644 --- a/cmd-server-info.c +++ b/cmd-server-info.c @@ -1,4 +1,4 @@ -/* $Id: cmd-server-info.c,v 1.38 2010-12-22 15:36:44 tcunha Exp $ */ +/* $Id: cmd-server-info.c,v 1.39 2010-12-31 22:12:33 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -69,7 +69,7 @@ cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx) tim = ctime(&start_time); *strchr(tim, '\n') = '\0'; ctx->print(ctx, - "tmux " BUILD ", pid %ld, started %s", (long) getpid(), tim); + "tmux " VERSION ", pid %ld, started %s", (long) getpid(), tim); ctx->print( ctx, "socket path %s, debug level %d", socket_path, debug_level); if (uname(&un) == 0) { |