summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/io.c b/io.c
index 2a231298f3..0d9f07a8d5 100644
--- a/io.c
+++ b/io.c
@@ -86,6 +86,10 @@ extern void Init_File _((void));
#include "util.h"
+#ifndef O_ACCMODE
+#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
+#endif
+
#if SIZEOF_OFF_T > SIZEOF_LONG && !defined(HAVE_LONG_LONG)
# error off_t is bigger than long, but you have no long long...
#endif
@@ -2378,7 +2382,7 @@ rb_io_mode_modenum(mode)
#endif
break;
case '+':
- flags |= O_RDWR;
+ flags = (flags & ~O_ACCMODE) | O_RDWR;
break;
default:
goto error;