mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* file.c (fpath_check): typo fixed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cca26c2226
commit
52f59d78f2
2 changed files with 3 additions and 1 deletions
|
@ -3,6 +3,8 @@ Wed Sep 21 02:44:09 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|||
* file.c (path_check_0): disallow sticky world writable directory
|
||||
in PATH (and $LOAD_PATH). [ruby-dev:27226]
|
||||
|
||||
* file.c (fpath_check): typo fixed.
|
||||
|
||||
Tue Sep 20 22:29:49 2005 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
|
||||
|
||||
* test/wsdl/simpletype/rpc/test_rpc.rb, test/wsdl/ref/test_ref.rb,
|
||||
|
|
2
file.c
2
file.c
|
@ -3896,7 +3896,7 @@ fpath_check(path)
|
|||
char *path;
|
||||
{
|
||||
#ifndef DOSISH
|
||||
return path_check_0(path, Qfalse);
|
||||
return path_check_0(rb_str_new2(path), Qfalse);
|
||||
#else
|
||||
return 1;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue