diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-09-15 23:52:30 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-09-15 23:52:30 +0000 |
commit | dbaa28492ec22f1e961a2612ebb6e4acf9ad9a8b (patch) | |
tree | e81d733da10b9d8baed4bb402fe7d0596a371eda /server.c | |
parent | 960cd3da69952e30535209e3bc486bba6e2c9af0 (diff) | |
download | rtmux-dbaa28492ec22f1e961a2612ebb6e4acf9ad9a8b.tar.gz rtmux-dbaa28492ec22f1e961a2612ebb6e4acf9ad9a8b.tar.bz2 rtmux-dbaa28492ec22f1e961a2612ebb6e4acf9ad9a8b.zip |
Sync OpenBSD patchset 327:
The default terminal size should be 80x24, not 80x25.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: server.c,v 1.187 2009-09-15 23:50:32 tcunha Exp $ */ +/* $Id: server.c,v 1.188 2009-09-15 23:52:30 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -96,7 +96,7 @@ server_create_client(int fd) c->session = NULL; c->tty.sx = 80; - c->tty.sy = 25; + c->tty.sy = 24; screen_init(&c->status, c->tty.sx, 1, 0); c->message_string = NULL; |