diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-06 19:11:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-06 19:11:34 +0000 |
commit | a5dbb39dac2022d1cbc4d3a28fe42f653c35cc48 (patch) | |
tree | e34004b7a0e2a490cecbf87021e95e6cfac7ceba /init | |
parent | c8c10c57159db40ec34f03652ef8ab96c1848ab6 (diff) | |
download | busybox-a5dbb39dac2022d1cbc4d3a28fe42f653c35cc48.tar.gz |
Change order.
-Erik
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 4 |
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; |