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
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-05-17 22:08:12 +0400
committerDenys Vlasenko <vda.linux@googlemail.com>2013-05-17 22:08:12 +0400
commitae0cf2a9d73d6e290e3b2850de2bf22f9b3df622 (patch)
treefb981d0d3c8d18f6469eeae427aa860b2e0a4ffe /coreutils/stty.c
parente9581b673cb731490dac0db597296047acf9b828 (diff)
stty: disable CIBAUD leak check - it is not necessary on Linux
function old new delta stty_main 1233 1196 -37 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/stty.c')
-rw-r--r--coreutils/stty.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/coreutils/stty.c b/coreutils/stty.c
index c52296871..d1e74f437 100644
--- a/coreutils/stty.c
+++ b/coreutils/stty.c
@@ -1533,7 +1533,12 @@ int stty_main(int argc UNUSED_PARAM, char **argv)
perror_on_device_and_die("%s");
if (memcmp(&mode, &new_mode, sizeof(mode)) != 0) {
-#if CIBAUD
+/*
+ * I think the below chunk is not necessary on Linux.
+ * If you are deleting it, also delete STTY_speed_was_set bit -
+ * it is only ever checked here.
+ */
+#if 0 /* was "if CIBAUD" */
/* SunOS 4.1.3 (at least) has the problem that after this sequence,
tcgetattr (&m1); tcsetattr (&m1); tcgetattr (&m2);
sometimes (m1 != m2). The only difference is in the four bits