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-w32-a5dbb39dac2022d1cbc4d3a28fe42f653c35cc48.tar.gz busybox-w32-a5dbb39dac2022d1cbc4d3a28fe42f653c35cc48.tar.bz2 busybox-w32-a5dbb39dac2022d1cbc4d3a28fe42f653c35cc48.zip | |
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) | |||
| 239 | tty.c_cc[VERASE] = CTRLCHAR('?'); /* Ctrl-? */ | 239 | tty.c_cc[VERASE] = CTRLCHAR('?'); /* Ctrl-? */ |
| 240 | tty.c_cc[VKILL] = CTRLCHAR('U'); /* Ctrl-U */ | 240 | tty.c_cc[VKILL] = CTRLCHAR('U'); /* Ctrl-U */ |
| 241 | tty.c_cc[VEOF] = CTRLCHAR('D'); /* Ctrl-D */ | 241 | tty.c_cc[VEOF] = CTRLCHAR('D'); /* Ctrl-D */ |
| 242 | tty.c_cc[VSTOP] = CTRLCHAR('S'); /* Ctrl-S */ | ||
| 243 | tty.c_cc[VSTART] = CTRLCHAR('Q'); /* Ctrl-Q */ | 242 | tty.c_cc[VSTART] = CTRLCHAR('Q'); /* Ctrl-Q */ |
| 243 | tty.c_cc[VSTOP] = CTRLCHAR('S'); /* Ctrl-S */ | ||
| 244 | tty.c_cc[VSUSP] = CTRLCHAR('Z'); /* Ctrl-Z */ | 244 | tty.c_cc[VSUSP] = CTRLCHAR('Z'); /* Ctrl-Z */ |
| 245 | 245 | ||
| 246 | /* use line dicipline 0 */ | 246 | /* use line dicipline 0 */ |
| 247 | tty.c_line = 0; | 247 | tty.c_line = 0; |
| 248 | 248 | ||
