mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* file.c (utime_internal): fix a variable missed to replace.
[ruby-core:42864] [Bug #6077] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34792 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d77f31b635
commit
cbd6a464ce
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Feb 25 06:55:29 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* file.c (utime_internal): fix a variable missed to replace.
|
||||
[ruby-core:42864] [Bug #6077]
|
||||
|
||||
Fri Feb 24 18:21:55 2012 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||
|
||||
* test/zlib/test_zlib.rb (TestZlibGzipReader#test_encoding): Add
|
||||
|
|
2
file.c
2
file.c
|
@ -2270,7 +2270,7 @@ utime_internal(const char *path, VALUE pathv, void *arg)
|
|||
try_utimensat = 0;
|
||||
goto no_utimensat;
|
||||
}
|
||||
utime_failed(path, tsp, v->atime, v->mtime);
|
||||
utime_failed(pathv, tsp, v->atime, v->mtime);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue