Support O_TEXT, O_BINARY on all platforms.
authorBruno Haible <bruno@clisp.org>
Sun, 23 Aug 2009 08:46:39 +0000 (10:46 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 23 Aug 2009 08:46:39 +0000 (10:46 +0200)
ChangeLog
lib/pipe2.c

index 868272b..ee8dd55 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
 2009-08-23  Bruno Haible  <bruno@clisp.org>
 
+       * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
+       Reported by Eric Blake.
+
+2009-08-23  Bruno Haible  <bruno@clisp.org>
+
        * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
+       Reported by Eric Blake.
 
 2009-08-23  Bruno Haible  <bruno@clisp.org>
 
index d40c4cd..805c3f5 100644 (file)
@@ -52,7 +52,7 @@ int
 pipe2 (int fd[2], int flags)
 {
   /* Check the supported flags.  */
-  if ((flags & ~(O_CLOEXEC | O_NONBLOCK)) != 0)
+  if ((flags & ~(O_CLOEXEC | O_NONBLOCK | O_TEXT | O_BINARY)) != 0)
     {
       errno = EINVAL;
       return -1;
@@ -87,6 +87,13 @@ pipe2 (int fd[2], int flags)
        goto fail;
     }
 
+#if O_BINARY
+  if (flags & O_BINARY)
+    setmode (fd, O_BINARY);
+  else if (flags & O_TEXT)
+    setmode (fd, O_TEXT);
+#endif
+
   return 0;
 
  fail: