From fd4417f8fe0c82c7c2f9adaa556f06551d1ed111 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 4 Jun 2010 23:30:48 +0000 Subject: * file.c (rb_f_test): 'W' should test writable by real uid/git, not world writable. [ruby-core:30587] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'file.c') diff --git a/file.c b/file.c index c86eb53f0c..0ce6e3a19b 100644 --- a/file.c +++ b/file.c @@ -4107,7 +4107,7 @@ rb_f_test(int argc, VALUE *argv) return rb_file_writable_p(0, argv[1]); case 'W': - return rb_file_world_writable_p(0, argv[1]); + return rb_file_writable_real_p(0, argv[1]); case 'x': return rb_file_executable_p(0, argv[1]); -- cgit v1.2.3