From 5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 19 Mar 2001 03:20:24 +0000 Subject: * dir.c (glob_helper): replace lstat() by stat() to follow symlink in the case like 'symlink/*'. * dir.c (glob_helper): gave warning too much. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index c8970f787..d24f6297c 100644 --- a/file.c +++ b/file.c @@ -67,7 +67,7 @@ char *strrchr _((const char*,const char)); #include #ifndef HAVE_LSTAT -#define lstat rb_sys_stat +#define lstat stat #endif VALUE rb_cFile; @@ -313,7 +313,7 @@ rb_stat(file, st) #if defined DJGPP if (RSTRING(file)->len == 0) return -1; #endif - return rb_sys_stat(RSTRING(file)->ptr, st); + return stat(RSTRING(file)->ptr, st); } static VALUE @@ -323,7 +323,7 @@ rb_file_s_stat(obj, fname) struct stat st; Check_SafeStr(fname); - if (rb_sys_stat(RSTRING(fname)->ptr, &st) == -1) { + if (stat(RSTRING(fname)->ptr, &st) == -1) { rb_sys_fail(RSTRING(fname)->ptr); } return stat_new(&st); @@ -419,7 +419,7 @@ eaccess(path, mode) struct stat st; static int euid = -1; - if (rb_sys_stat(path, &st) < 0) return (-1); + if (stat(path, &st) < 0) return (-1); if (euid == -1) euid = geteuid (); @@ -721,7 +721,7 @@ check3rdbyte(file, mode) { struct stat st; - if (rb_sys_stat(file, &st) < 0) return Qfalse; + if (stat(file, &st) < 0) return Qfalse; if (st.st_mode & mode) return Qtrue; return Qfalse; } -- cgit