aboutsummaryrefslogtreecommitdiffstats
path: root/src/testtty.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testtty.c')
-rw-r--r--src/testtty.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/testtty.c b/src/testtty.c
index dbdc918..11d3ac2 100644
--- a/src/testtty.c
+++ b/src/testtty.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.3 2008/02/06 17:53:28 james
+ * *** empty log message ***
+ *
* Revision 1.2 2008/02/04 02:05:06 james
* *** empty log message ***
*
@@ -63,8 +66,8 @@ open_fd_to_bash (void) /*thump */
default_termios (&termios);
- winsize.ws_row = CRT_ROWS;
- winsize.ws_col = CRT_COLS;
+ winsize.ws_row = VT102_ROWS;
+ winsize.ws_col = VT102_COLS;
child = forkpty (&fd, NULL, &termios, &winsize);