diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-10 01:30:38 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-10 01:30:38 +0000 |
commit | fb6c8ecae60c94f99201195bf876e44ba6c7fd1a (patch) | |
tree | 7b0edb8a5fff5c28d2a6aae5d51b5ed4de9d3cd3 /cmd-list-clients.c | |
parent | 3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff (diff) | |
download | rtmux-fb6c8ecae60c94f99201195bf876e44ba6c7fd1a.tar.gz rtmux-fb6c8ecae60c94f99201195bf876e44ba6c7fd1a.tar.bz2 rtmux-fb6c8ecae60c94f99201195bf876e44ba6c7fd1a.zip |
New command, server-info, to show server info + terminal details. Also tweak term stuff a bit.
Diffstat (limited to 'cmd-list-clients.c')
-rw-r--r-- | cmd-list-clients.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd-list-clients.c b/cmd-list-clients.c index c9ab802d..bef421e6 100644 --- a/cmd-list-clients.c +++ b/cmd-list-clients.c @@ -1,4 +1,4 @@ -/* $Id: cmd-list-clients.c,v 1.10 2009-01-09 16:45:58 nicm Exp $ */ +/* $Id: cmd-list-clients.c,v 1.11 2009-01-10 01:30:38 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -53,8 +53,8 @@ cmd_list_clients_exec(unused struct cmd *self, struct cmd_ctx *ctx) if (c == NULL || c->session == NULL) continue; - ctx->print(ctx, "%s: %s [%ux%u]", - c->tty.path, c->session->name, c->sx, c->sy); + ctx->print(ctx, "%s: %s [%ux%u %s]", c->tty.path, + c->session->name, c->sx, c->sy, c->tty.termname); } if (ctx->cmdclient != NULL) |