* ext/socket/getaddrinfo.c (gai_strerror): ignore only on Haiku.
a patch from <znz at mbf.nifty.com>, [ruby-dev:35796]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18408 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
38eeffcec2
commit
c73a203040
@ -1,3 +1,8 @@
|
|||||||
|
Thu Aug 7 13:12:30 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/socket/getaddrinfo.c (gai_strerror): ignore only on Haiku.
|
||||||
|
a patch from <znz at mbf.nifty.com>, [ruby-dev:35796].
|
||||||
|
|
||||||
Thu Aug 7 06:31:12 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
Thu Aug 7 06:31:12 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* test/ruby/process.rb (test_popen_fork): skip a test which is
|
* test/ruby/process.rb (test_popen_fork): skip a test which is
|
||||||
|
@ -194,7 +194,7 @@ if (pai->ai_flags & AI_CANONNAME) {\
|
|||||||
|
|
||||||
#define ERR(err) { error = (err); goto bad; }
|
#define ERR(err) { error = (err); goto bad; }
|
||||||
|
|
||||||
/*
|
#ifndef __HAIKU__
|
||||||
#if defined __UCLIBC__
|
#if defined __UCLIBC__
|
||||||
const
|
const
|
||||||
#endif
|
#endif
|
||||||
@ -205,7 +205,7 @@ gai_strerror(int ecode)
|
|||||||
ecode = EAI_MAX;
|
ecode = EAI_MAX;
|
||||||
return (char *)ai_errlist[ecode];
|
return (char *)ai_errlist[ecode];
|
||||||
}
|
}
|
||||||
*/
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
freeaddrinfo(struct addrinfo *ai)
|
freeaddrinfo(struct addrinfo *ai)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user