1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* file.c: access()/eaccess() wrapping methods check more than just uid.

[fix GH-1007][ci skip] Patch by @eam

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51834 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-09-12 07:14:38 +00:00
parent 2014b4d5ff
commit d84597355e
2 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,8 @@
Sat Sep 12 16:14:31 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* file.c: access()/eaccess() wrapping methods check more than just uid.
[fix GH-1007][ci skip] Patch by @eam
Sat Sep 12 16:07:01 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* README.md: improve markdown rendering for readable.

12
file.c
View file

@ -1556,7 +1556,7 @@ rb_file_exists_p(VALUE obj, VALUE fname)
* File.readable?(file_name) -> true or false
*
* Returns <code>true</code> if the named file is readable by the effective
* user id of this process.
* user and group id of this process. See eaccess(3).
*/
static VALUE
@ -1573,7 +1573,7 @@ rb_file_readable_p(VALUE obj, VALUE fname)
* File.readable_real?(file_name) -> true or false
*
* Returns <code>true</code> if the named file is readable by the real
* user id of this process.
* user and group id of this process. See access(3).
*/
static VALUE
@ -1628,7 +1628,7 @@ rb_file_world_readable_p(VALUE obj, VALUE fname)
* File.writable?(file_name) -> true or false
*
* Returns <code>true</code> if the named file is writable by the effective
* user id of this process.
* user and group id of this process. See eaccess(3).
*/
static VALUE
@ -1645,7 +1645,7 @@ rb_file_writable_p(VALUE obj, VALUE fname)
* File.writable_real?(file_name) -> true or false
*
* Returns <code>true</code> if the named file is writable by the real
* user id of this process.
* user and group id of this process. See access(3)
*/
static VALUE
@ -1692,7 +1692,7 @@ rb_file_world_writable_p(VALUE obj, VALUE fname)
* File.executable?(file_name) -> true or false
*
* Returns <code>true</code> if the named file is executable by the effective
* user id of this process.
* user and group id of this process. See eaccess(3).
*/
static VALUE
@ -1709,7 +1709,7 @@ rb_file_executable_p(VALUE obj, VALUE fname)
* File.executable_real?(file_name) -> true or false
*
* Returns <code>true</code> if the named file is executable by the real
* user id of this process.
* user and group id of this process. See access(3).
*/
static VALUE