summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-15 14:55:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-15 14:55:16 +0000
commit1867a3f4981a3a51c7d92f6012149446af24dcae (patch)
tree35afdabc80e0a922cf9e47c7c644bed30cb1982e /file.c
parentfb10e93036279b422ff566c92d91133623e8596b (diff)
* file.c (file_load_ok): eaccess() returns 0 on success.
fixed: [ruby-dev:27713] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9546 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index d41c2f48ae..bdd12d0946 100644
--- a/file.c
+++ b/file.c
@@ -3956,7 +3956,7 @@ is_macos_native_path(const char *path)
static int
file_load_ok(const char *path)
{
- return eaccess(path, R_OK);
+ return eaccess(path, R_OK) == 0;
}
extern VALUE rb_load_path;