From 9910feef4fc251419dc31cd2e022f81375bcad23 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 21 Mar 2001 03:41:45 +0000 Subject: * gc.c (id2ref): sometimes confused symbol and reference. * dir.c (glob_helper): breaks loop after calling recusive glob_helper; all wild cards should be consumed; no need for further match. * dir.c (dir_s_glob): gives warning if no match found. * object.c (sym_inspect): did allocate extra byte space. * marshal.c (shortlen): shortlen should return number of bytes written. * eval.c (ev_const_defined): need not to check if cbase->nd_class is rb_cObject. * eval.c (ev_const_get): ditto. * time.c (time_zone): return "UTC" for UTC time objects. * eval.c (THREAD_ALLOC): flags should be initialized. * signal.c (rb_f_kill): should use FIX2INT, not FIX2UINT. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1267 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index d24f6297c1..dcc1c1e89b 100644 --- a/file.c +++ b/file.c @@ -313,7 +313,7 @@ rb_stat(file, st) #if defined DJGPP if (RSTRING(file)->len == 0) return -1; #endif - return stat(RSTRING(file)->ptr, st); + return rb_sys_stat(RSTRING(file)->ptr, st); } static VALUE @@ -323,7 +323,7 @@ rb_file_s_stat(obj, fname) struct stat st; Check_SafeStr(fname); - if (stat(RSTRING(fname)->ptr, &st) == -1) { + if (rb_sys_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 (stat(path, &st) < 0) return (-1); + if (rb_sys_stat(path, &st) < 0) return (-1); if (euid == -1) euid = geteuid (); @@ -721,7 +721,7 @@ check3rdbyte(file, mode) { struct stat st; - if (stat(file, &st) < 0) return Qfalse; + if (rb_sys_stat(file, &st) < 0) return Qfalse; if (st.st_mode & mode) return Qtrue; return Qfalse; } @@ -2115,7 +2115,7 @@ path_check_1(path) return path_check_1(buf); } for (;;) { - if (stat(path, &st) == 0 && (st.st_mode & 002)) { + if (rb_sys_stat(path, &st) == 0 && (st.st_mode & 002)) { if (p) *p = '/'; return 0; } @@ -2234,7 +2234,7 @@ rb_find_file(file) } path = dln_find_file(file, path); - if (path && stat(path, &st) == 0) { + if (path && rb_sys_stat(path, &st) == 0) { return path; } return 0; -- cgit v1.2.3