aboutsummaryrefslogtreecommitdiffstats
path: root/src/tty.c
diff options
context:
space:
mode:
authorjames <>2008-02-28 16:37:16 +0000
committerjames <>2008-02-28 16:37:16 +0000
commit57dd88f415d70356e41f2bfd5c00c250bd085723 (patch)
treec9ab3a642c9b5700057cf22d1c4f71348af68333 /src/tty.c
parentcc6c5bbd8a277969b30b85dfab8a0fb11066bc9e (diff)
downloadsympathy-57dd88f415d70356e41f2bfd5c00c250bd085723.tar.gz
sympathy-57dd88f415d70356e41f2bfd5c00c250bd085723.tar.bz2
sympathy-57dd88f415d70356e41f2bfd5c00c250bd085723.zip
*** empty log message ***
Diffstat (limited to 'src/tty.c')
-rw-r--r--src/tty.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/tty.c b/src/tty.c
index 6090af2..f27afea 100644
--- a/src/tty.c
+++ b/src/tty.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.18 2008/02/28 16:37:16 james
+ * *** empty log message ***
+ *
* Revision 1.17 2008/02/28 15:37:06 james
* *** empty log message ***
*
@@ -324,12 +327,6 @@ tty_set_flow (TTY * t, int flow)
}
-void tty_winch(TTY *y,CRT_Pos p)
-{
-//FIXME:
-
-}
-
void
tty_hangup (TTY * t)
{
@@ -351,7 +348,7 @@ void tty_winch(TTY * t,CRT_Pos size)
sz.ws_col=size.x;
sz.ws_row=size.y;
- ioctl (t->wfd, TIOCGWINSZ, &sz);
+ ioctl (t->wfd, TIOCSWINSZ, &sz);
}