aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--win32/win32.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c5d04845e..d718237e47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jul 23 14:35:02 2009 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/win32.c (rb_w32_{open,wopen}): fixed typos. these conditions
+ mean to call runtime's open() if textmode.
+
Thu Jul 23 08:53:24 2009 Eric Hodel <drbrain@segment7.net>
* lib/rdoc/markup/simple_markup/: Remove useless directory.
diff --git a/win32/win32.c b/win32/win32.c
index 02645b2d93..b98575572b 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4472,7 +4472,7 @@ rb_w32_open(const char *file, int oflag, ...)
pmode = va_arg(arg, int);
va_end(arg);
- if ((oflag & O_TEXT) || !(oflag & ~O_BINARY)) {
+ if ((oflag & O_TEXT) || !(oflag & O_BINARY)) {
return _open(file, oflag, pmode);
}
@@ -4501,7 +4501,7 @@ rb_w32_wopen(const WCHAR *file, int oflag, ...)
SECURITY_ATTRIBUTES sec;
HANDLE h;
- if ((oflag & O_TEXT) || !(oflag & ~O_BINARY)) {
+ if ((oflag & O_TEXT) || !(oflag & O_BINARY)) {
va_list arg;
int pmode;
va_start(arg, oflag);