* file.c (eaccess): workaround for recent msvcrt's behavior.

[ruby-core:16460]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16129 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-04-22 00:58:04 +00:00
Родитель b1166a0469
Коммит 915b5c5508
3 изменённых файлов: 10 добавлений и 5 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Tue Apr 22 09:56:51 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* file.c (eaccess): workaround for recent msvcrt's behavior.
[ruby-core:16460]
Mon Apr 21 19:08:32 2008 Tanaka Akira <akr@fsij.org>
* io.c (copy_stream_body): call rb_io_check_readable and

4
file.c
Просмотреть файл

@ -944,8 +944,8 @@ eaccess(const char *path, int mode)
return -1;
#else
# if _MSC_VER >= 1400
mode &= 6;
# if defined(_MSC_VER) || defined(__MINGW32__)
mode &= ~1;
# endif
return access(path, mode);
#endif

Просмотреть файл

@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0"
#define RUBY_RELEASE_DATE "2008-04-21"
#define RUBY_RELEASE_DATE "2008-04-22"
#define RUBY_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20080421
#define RUBY_RELEASE_CODE 20080422
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 4
#define RUBY_RELEASE_DAY 21
#define RUBY_RELEASE_DAY 22
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];