aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-09-15 23:52:30 +0000
committerTiago Cunha <tcunha@gmx.com>2009-09-15 23:52:30 +0000
commitdbaa28492ec22f1e961a2612ebb6e4acf9ad9a8b (patch)
treee81d733da10b9d8baed4bb402fe7d0596a371eda /server.c
parent960cd3da69952e30535209e3bc486bba6e2c9af0 (diff)
downloadrtmux-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server.c b/server.c
index a8ae6226..cba9601c 100644
--- a/server.c
+++ b/server.c
@@ -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;