From 45815f9c9d334e0d7a0c40ba939661efdba08153 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/trunk@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 5c037fe36f..7bb4e0bdc5 100644 --- a/file.c +++ b/file.c @@ -4099,7 +4099,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