summaryrefslogtreecommitdiffstats
path: root/cmd-list-clients.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 17:50:36 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 17:50:36 +0000
commit03d531ebc6058f0c3d4f5d2a5471255d23c0b93e (patch)
tree7d4f79ccbee7673ee6fea28ab9c91e8e8803655b /cmd-list-clients.c
parent65378588acc59fe1cf5121dc41aa782812b8033d (diff)
Move sx,sy into tty rather than client.
Diffstat (limited to 'cmd-list-clients.c')
-rw-r--r--cmd-list-clients.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-list-clients.c b/cmd-list-clients.c
index c920f4dc..67a0cc5b 100644
--- a/cmd-list-clients.c
+++ b/cmd-list-clients.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-list-clients.c,v 1.12 2009-01-19 18:23:40 nicm Exp $ */
+/* $Id: cmd-list-clients.c,v 1.13 2009-02-11 17:50:32 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -54,7 +54,7 @@ cmd_list_clients_exec(unused struct cmd *self, struct cmd_ctx *ctx)
continue;
ctx->print(ctx, "%s: %s [%ux%u %s]", c->tty.path,
- c->session->name, c->sx, c->sy, c->tty.termname);
+ c->session->name, c->tty.sx, c->tty.sy, c->tty.termname);
}
return (0);