aboutsummaryrefslogtreecommitdiff
path: root/loginutils/getty.c
diff options
context:
space:
mode:
authoraaronl <aaronl@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-08-23 07:56:21 +0000
committeraaronl <aaronl@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-08-23 07:56:21 +0000
commitb888a5365d64cd5cff0070bb8f5f3be728055849 (patch)
tree2f7d499b402e96e314a317b359b3562958d880a9 /loginutils/getty.c
parentbd7a496cb422a07b04bb58aaa1bc06eab391d333 (diff)
downloadbusybox-w32-b888a5365d64cd5cff0070bb8f5f3be728055849.tar.gz
busybox-w32-b888a5365d64cd5cff0070bb8f5f3be728055849.tar.bz2
busybox-w32-b888a5365d64cd5cff0070bb8f5f3be728055849.zip
Don't #ifdef __linux__. this is linux.
git-svn-id: svn://busybox.net/trunk/busybox@5359 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--loginutils/getty.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c
index 0176d621c..468208a49 100644
--- a/loginutils/getty.c
+++ b/loginutils/getty.c
@@ -1029,11 +1029,7 @@ static void termio_final(struct options *op, struct termio *tp, struct chardata
1029 tp->c_cc[VQUIT] = DEF_QUIT; /* default quit */ 1029 tp->c_cc[VQUIT] = DEF_QUIT; /* default quit */
1030 tp->c_cc[VEOF] = DEF_EOF; /* default EOF character */ 1030 tp->c_cc[VEOF] = DEF_EOF; /* default EOF character */
1031 tp->c_cc[VEOL] = DEF_EOL; 1031 tp->c_cc[VEOL] = DEF_EOL;
1032#ifdef __linux__
1033 tp->c_cc[VSWTC] = DEF_SWITCH; /* default switch character */ 1032 tp->c_cc[VSWTC] = DEF_SWITCH; /* default switch character */
1034#else
1035 tp->c_cc[VSWTCH] = DEF_SWITCH; /* default switch character */
1036#endif
1037 1033
1038 /* Account for special characters seen in input. */ 1034 /* Account for special characters seen in input. */
1039 1035