From f71b3054cd0111625ef8bf933517a08f07833e06 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 31 Dec 2010 22:12:33 +0000 Subject: Switch tmux to use autoconf and automake. Although they suck, they suck less than the alternatives. --- cmd-server-info.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd-server-info.c') 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 @@ -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) { -- cgit