summaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-27 13:27:14 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-27 13:27:14 +0000
commit4c2af4a575e582e90677fdf3f6720dbb78727e4e (patch)
tree771f0f3dae0b2369163ee836101d81383da5afe2 /util.c
parenta5a572f02570c5d8a5397850df5cf37f68620f9b (diff)
downloadruby-4c2af4a575e582e90677fdf3f6720dbb78727e4e.tar.gz
ruby-4c2af4a575e582e90677fdf3f6720dbb78727e4e.tar.xz
ruby-4c2af4a575e582e90677fdf3f6720dbb78727e4e.zip
* util.c (__crt0_glob_function): use ruby_glob() instead of rb_globi().
* configure.in (ac_cv_func_setrlimit): workaround for djgpp. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11916 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 6c16aaed4..c949a98e6 100644
--- a/util.c
+++ b/util.c
@@ -347,7 +347,7 @@ __crt0_glob_function(char *path)
info.count = 0;
info.head = 0;
- rb_glob(buf, push_element, (VALUE)&info);
+ ruby_glob(buf, 0, push_element, (VALUE)&info);
if (buf != path_buffer)
ruby_xfree(buf);