aboutsummaryrefslogtreecommitdiff
path: root/init.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-06 19:11:34 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-06 19:11:34 +0000
commita5dbb39dac2022d1cbc4d3a28fe42f653c35cc48 (patch)
treee34004b7a0e2a490cecbf87021e95e6cfac7ceba /init.c
parentc8c10c57159db40ec34f03652ef8ab96c1848ab6 (diff)
downloadbusybox-a5dbb39dac2022d1cbc4d3a28fe42f653c35cc48.tar.gz
Change order.
-Erik
Diffstat (limited to 'init.c')
-rw-r--r--init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.c b/init.c
index 7236cf851..c960fe333 100644
--- a/init.c
+++ b/init.c
@@ -239,10 +239,10 @@ void set_term(int fd)
tty.c_cc[VERASE] = CTRLCHAR('?'); /* Ctrl-? */
tty.c_cc[VKILL] = CTRLCHAR('U'); /* Ctrl-U */
tty.c_cc[VEOF] = CTRLCHAR('D'); /* Ctrl-D */
- tty.c_cc[VSTOP] = CTRLCHAR('S'); /* Ctrl-S */
tty.c_cc[VSTART] = CTRLCHAR('Q'); /* Ctrl-Q */
+ tty.c_cc[VSTOP] = CTRLCHAR('S'); /* Ctrl-S */
tty.c_cc[VSUSP] = CTRLCHAR('Z'); /* Ctrl-Z */
-
+
/* use line dicipline 0 */
tty.c_line = 0;