From b9c0eba5a1cd5e6259978e61f24c7c28f48ca2c1 Mon Sep 17 00:00:00 2001 From: usa Date: Sat, 22 Feb 2014 10:16:08 +0000 Subject: merge revision(s) 45130: [Backport #9554] * ext/io/console/console.c (console_dev): need read access for conout$ because some functions need it. [Bug#9554] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@45131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/io/console/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/io/console/console.c b/ext/io/console/console.c index efad30c1ca..e0799a01c0 100644 --- a/ext/io/console/console.c +++ b/ext/io/console/console.c @@ -684,7 +684,7 @@ console_dev(VALUE klass) int fd; #ifdef CONSOLE_DEVICE_FOR_WRITING - fd = open(CONSOLE_DEVICE_FOR_WRITING, O_WRONLY); + fd = open(CONSOLE_DEVICE_FOR_WRITING, O_RDWR); if (fd < 0) return Qnil; rb_update_max_fd(fd); args[1] = INT2FIX(O_WRONLY); -- cgit v1.2.3