1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* win32/win32.c (myrename): fix error handling.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2001-02-24 13:19:13 +00:00
parent b1cd5105d4
commit 9ce5d1f0f5
3 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Sat Feb 24 22:14:00 2001 WATANABE Hirofumi <eban@ruby-lang.org>
* win32/win32.c (myrename): fix error handling.
Sat Feb 24 13:58:48 2001 Minero Aoki <aamine@dp.u-netsurf.ne.jp>
* lib/net/http.rb: always close connection on request without

View file

@ -1,4 +1,4 @@
#define RUBY_VERSION "1.7.0"
#define RUBY_RELEASE_DATE "2001-02-20"
#define RUBY_RELEASE_DATE "2001-02-24"
#define RUBY_VERSION_CODE 170
#define RUBY_RELEASE_CODE 20010220
#define RUBY_RELEASE_CODE 20010224

View file

@ -2615,7 +2615,7 @@ myrename(const char *oldpath, const char *newpath)
newatts = GetFileAttributes(newpath);
if (oldatts == -1) {
printf("file to move doesn't exist");
errno = GetLastError();
return -1;
}