summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-11 08:59:20 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-11 08:59:20 +0000
commit9f3d5e71720dc450731ba6e50d589fd5c3c65757 (patch)
tree64ae739a570316ce8daf6e5ab65fd6b961ecd7a4 /dir.c
parent0935d9536957260d33db5546145c4397912c717e (diff)
* dir.c (rb_glob): should have called rb_glob_caller().
[ruby-dev:24773] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dir.c b/dir.c
index 1e03d412f9..970d13edcb 100644
--- a/dir.c
+++ b/dir.c
@@ -1410,7 +1410,7 @@ rb_glob(path, func, arg)
args.func = func;
args.arg = arg;
- status = rb_glob2(rb_str_new2(path), 0, func, &args);
+ status = rb_glob2(rb_str_new2(path), 0, rb_glob_caller, &args);
if (status) rb_jump_tag(status);
}