diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-20 17:51:20 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-20 17:51:20 +0000 |
| commit | 89101f7a5184bcf713f819a6bad4a327d8659fa2 (patch) | |
| tree | e87d0bbfc5d7b569b74cc5b3dae3d389106405d3 | |
| parent | f9bc13a25244398ba034ccd5735aa9748aaae3f2 (diff) | |
| download | ruby-89101f7a5184bcf713f819a6bad4a327d8659fa2.tar.gz ruby-89101f7a5184bcf713f819a6bad4a327d8659fa2.tar.xz ruby-89101f7a5184bcf713f819a6bad4a327d8659fa2.zip | |
* file.c (fpath_check): typo fixed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | file.c | 2 |
2 files changed, 3 insertions, 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, @@ -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 |
