зеркало из https://github.com/github/ruby.git
* file.c (eaccess): under windows, make eaccess() just call
access(). [ruby-core:716], [ruby-bugs:PR#556] * ChangeLog: fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
4ae8470a48
Коммит
e83f415139
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Jan 20 00:17:16 2003 Matt Armstrong <matt@lickey.com>
|
||||||
|
|
||||||
|
* file.c (eaccess): under windows, make eaccess() just call
|
||||||
|
access(). [ruby-core:716], [ruby-bugs:PR#556]
|
||||||
|
|
||||||
Sun Jan 19 23:08:18 2003 Akinori MUSHA <knu@iDaemons.org>
|
Sun Jan 19 23:08:18 2003 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
* lib/shellwords.rb (shellwords): A backslash ('\') in single
|
* lib/shellwords.rb (shellwords): A backslash ('\') in single
|
||||||
|
@ -601,7 +606,7 @@ Tue Dec 24 23:37:40 2002 TADA Tadashi <sho@spc.gr.jp>
|
||||||
|
|
||||||
Tue Dec 24 19:19:24 2002 Tietew <tietew@tietew.net>
|
Tue Dec 24 19:19:24 2002 Tietew <tietew@tietew.net>
|
||||||
|
|
||||||
* numeric.c (DBL_MAX_10_EXP): fix typo. [ruby-dev:36826]
|
* numeric.c (DBL_MAX_10_EXP): fix typo. [ruby-dev:19175]
|
||||||
|
|
||||||
Tue Dec 24 17:02:46 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Dec 24 17:02:46 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
|
2
file.c
2
file.c
|
@ -463,7 +463,7 @@ eaccess(path, mode)
|
||||||
const char *path;
|
const char *path;
|
||||||
int mode;
|
int mode;
|
||||||
{
|
{
|
||||||
#ifdef S_IXGRP
|
#if defined(S_IXGRP) && !defined(_WIN32)
|
||||||
struct stat st;
|
struct stat st;
|
||||||
int euid;
|
int euid;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче