chiark / gitweb /
Actually implement the right transformation!
[mLib] / fdflags.c
index 6f401e4924dc02b480fec23824689d03a562c627..6e0cb0eec1c8328af5c43203577170bc673eab00 100644 (file)
--- a/fdflags.c
+++ b/fdflags.c
@@ -59,14 +59,14 @@ int fdflags(int fd, unsigned fbic, unsigned fxor,
   if (fbic || fxor) {
     if ((f = fcntl(fd, F_GETFL)) == -1)
       return (-1);
-    ff = (f & fbic) ^ fxor;
+    ff = (f & ~fbic) ^ fxor;
     if (f != ff && fcntl(fd, F_SETFL, ff) == -1)
       return (-1);
   }
   if (fdbic || fdxor) {
     if ((f = fcntl(fd, F_GETFD)) == -1)
       return (-1);
-    ff = (f & fdbic) ^ fdxor;
+    ff = (f & ~fdbic) ^ fdxor;
     if (f != ff && fcntl(fd, F_SETFD, ff) == -1)
       return (-1);
   }