fix regression in tcsetattr on all mips archs
authorRich Felker <dalias@aerifal.cx>
Wed, 13 Jul 2016 19:04:30 +0000 (15:04 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 13 Jul 2016 19:04:30 +0000 (15:04 -0400)
revert commit 8c316e9e49d37ad92c2e7493e16166a2afca419f. it was wrong
and does not match how the kernel API works.

arch/mips/bits/termios.h
arch/mips64/bits/termios.h
arch/mipsn32/bits/termios.h
src/passwd/nscd_query.c

index f559f76f6af8684ec87fec0cef91503209cafd9c..6a1205d7bf3190b65eea6905abe008c50839b41e 100644 (file)
@@ -141,9 +141,9 @@ struct termios {
 #define TCOFLUSH  1
 #define TCIOFLUSH 2
 
-#define TCSANOW 0x540e
-#define TCSADRAIN 0x540f
-#define TCSAFLUSH 0x5410
+#define TCSANOW   0
+#define TCSADRAIN 1
+#define TCSAFLUSH 2
 
 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
 #define EXTA    0000016
index f559f76f6af8684ec87fec0cef91503209cafd9c..6a1205d7bf3190b65eea6905abe008c50839b41e 100644 (file)
@@ -141,9 +141,9 @@ struct termios {
 #define TCOFLUSH  1
 #define TCIOFLUSH 2
 
-#define TCSANOW 0x540e
-#define TCSADRAIN 0x540f
-#define TCSAFLUSH 0x5410
+#define TCSANOW   0
+#define TCSADRAIN 1
+#define TCSAFLUSH 2
 
 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
 #define EXTA    0000016
index f559f76f6af8684ec87fec0cef91503209cafd9c..6a1205d7bf3190b65eea6905abe008c50839b41e 100644 (file)
@@ -141,9 +141,9 @@ struct termios {
 #define TCOFLUSH  1
 #define TCIOFLUSH 2
 
-#define TCSANOW 0x540e
-#define TCSADRAIN 0x540f
-#define TCSAFLUSH 0x5410
+#define TCSANOW   0
+#define TCSADRAIN 1
+#define TCSAFLUSH 2
 
 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
 #define EXTA    0000016
index d38e371bcda395855a4e9a125d4a75a115c76416..1897edc83747e06577ef49f846556610d974cd67 100644 (file)
@@ -40,7 +40,7 @@ retry:
        buf[0] = NSCDVERSION;
 
        fd = socket(PF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
-       if (fd < 0) return NULL;
+       if (fd < 0 && errno != EAFNOSUPPORT) return NULL;
 
        if(!(f = fdopen(fd, "r"))) {
                close(fd);