ruby-changes:22743
From: nobu <ko1@a...>
Date: Sat, 25 Feb 2012 06:56:43 +0900 (JST)
Subject: [ruby-changes:22743] nobu:r34792 (trunk): * file.c (utime_internal): fix a variable missed to replace.
nobu 2012-02-25 06:55:34 +0900 (Sat, 25 Feb 2012) New Revision: 34792 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34792 Log: * file.c (utime_internal): fix a variable missed to replace. [ruby-core:42864] [Bug #6077] Modified files: trunk/ChangeLog trunk/file.c Index: ChangeLog =================================================================== --- ChangeLog (revision 34791) +++ ChangeLog (revision 34792) @@ -1,3 +1,8 @@ +Sat Feb 25 06:55:29 2012 Nobuyoshi Nakada <nobu@r...> + + * 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@r...> * test/zlib/test_zlib.rb (TestZlibGzipReader#test_encoding): Add Index: file.c =================================================================== --- file.c (revision 34791) +++ file.c (revision 34792) @@ -2270,7 +2270,7 @@ try_utimensat = 0; goto no_utimensat; } - utime_failed(path, tsp, v->atime, v->mtime); + utime_failed(pathv, tsp, v->atime, v->mtime); } return; } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/