From 03d531ebc6058f0c3d4f5d2a5471255d23c0b93e Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 11 Feb 2009 17:50:36 +0000 Subject: Move sx,sy into tty rather than client. --- cmd-server-info.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cmd-server-info.c') diff --git a/cmd-server-info.c b/cmd-server-info.c index 11b55468..e353f200 100644 --- a/cmd-server-info.c +++ b/cmd-server-info.c @@ -1,4 +1,4 @@ -/* $Id: cmd-server-info.c,v 1.9 2009-01-19 18:23:40 nicm Exp $ */ +/* $Id: cmd-server-info.c,v 1.10 2009-02-11 17:50:33 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott @@ -86,8 +86,8 @@ cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx) ctx->print(ctx, "%4d: %s (%d, %d): %s [%ux%u %s] " "[flags=0x%x/0x%x]", i, c->tty.path, c->fd, c->tty.fd, - c->session->name, c->sx, c->sy, c->tty.termname, c->flags, - c->tty.flags); + c->session->name, c->tty.sx, c->tty.sy, c->tty.termname, + c->flags, c->tty.flags); } ctx->print(ctx, ""); -- cgit