merge revision(s) 33873:

* win32/win32.c (rb_w32_uchmod): typo.  [Bug#5671] [ruby-dev:44898]

	* test/ruby/test_file.rb (TestFile#test_chmod_m17n): test of above bug.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34756 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-02-22 23:10:08 +00:00
parent 0894d6d66a
commit 9efce27a62
4 changed files with 16 additions and 2 deletions

View file

@ -5705,7 +5705,7 @@ rb_w32_uchmod(const char *path, int mode)
WCHAR *wpath;
int ret;
if (!(wpath = filecp_to_wstr(path, NULL)))
if (!(wpath = utf8_to_wstr(path, NULL)))
return -1;
ret = _wchmod(wpath, mode);
free(wpath);