diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-10-11 13:08:27 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-10-11 13:08:27 +0000 |
| commit | 446924cbb790016c293e13f4022fa0faf8f6d2c9 (patch) | |
| tree | f9a5bec00cb92f1c03fff6588aa3ebfed7ed4580 | |
| parent | 1ab0740838a5ff69ca6762817c9167cd1be741a5 (diff) | |
io.c: fix typo
* io.c (prep_io): fix typo of struct member name.
[ruby-core:77550] [Bug #12829]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56393 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | io.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Oct 11 22:08:24 2016 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * io.c (prep_io): fix typo of struct member name. + [ruby-core:77550] [Bug #12829] + Tue Oct 11 16:45:24 2016 Tanaka Akira <akr@fsij.org> * lib/uri/generic.rb (URI.find_proxy): Add an optional argument, env. @@ -7375,7 +7375,7 @@ prep_io(int fd, int fmode, VALUE klass, const char *path) fp->mode = fmode; if (!io_check_tty(fp)) { #ifdef __CYGWIN__ - fp->fmode |= FMODE_BINMODE; + fp->mode |= FMODE_BINMODE; setmode(fd, O_BINARY); #endif } |
