diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-03-19 03:20:24 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-03-19 03:20:24 +0000 |
| commit | 5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8 (patch) | |
| tree | cbaec0fd2c96e995c07daf489fbb8f62782621c9 /file.c | |
| parent | d97ac4405eb23ce98c49de5f1fd486755aa6a503 (diff) | |
| download | ruby-5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8.tar.gz ruby-5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8.tar.xz ruby-5ab2b8a553950333ff98642a4e4c8d8d3d87f4b8.zip | |
* 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
Diffstat (limited to 'file.c')
| -rw-r--r-- | file.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -67,7 +67,7 @@ char *strrchr _((const char*,const char)); #include <sys/stat.h> #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; } |
