Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-06 23:11:34 +0400
committerEric Andersen <andersen@codepoet.org>2000-07-06 23:11:34 +0400
commita5dbb39dac2022d1cbc4d3a28fe42f653c35cc48 (patch)
treee34004b7a0e2a490cecbf87021e95e6cfac7ceba /init
parentc8c10c57159db40ec34f03652ef8ab96c1848ab6 (diff)
Change order.
-Erik
Diffstat (limited to 'init')
-rw-r--r--init/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c
index 7236cf851..c960fe333 100644
--- a/init/init.c
+++ b/init/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;