From 7aaceb6d9a498f0987ef376ef06736fba4b482a8 Mon Sep 17 00:00:00 2001 From: eban Date: Wed, 21 Mar 2001 04:18:10 +0000 Subject: [PATCH] rb_iglob -> rb_globi git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1269 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- util.c | 2 +- win32/win32.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/util.c b/util.c index 5a1d3c7644..75889dcb15 100644 --- a/util.c +++ b/util.c @@ -350,7 +350,7 @@ __crt0_glob_function(char *path) info.count = 0; info.head = 0; - rb_iglob(buf, push_element, (VALUE)&info); + rb_globi(buf, push_element, (VALUE)&info); if (buf != path_buffer) ruby_xfree(buf); diff --git a/win32/win32.c b/win32/win32.c index d66723a0fc..6f16d4ad06 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -1005,7 +1005,7 @@ NtCmdGlob (NtCmdLineElement *patt) for (p = buf; *p; p = CharNext(p)) if (*p == '\\') *p = '/'; - rb_iglob(buf, insert, (VALUE)&listinfo); + rb_globi(buf, insert, (VALUE)&listinfo); if (buf != buffer) free(buf);