mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket/getaddrinfo.c (gai_strerror): make literals const.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2513 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5df72288f8
commit
dc010ff515
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ Tue Jun 4 00:45:50 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
|||
|
||||
* ext/socket/addrinfo.h: typo.
|
||||
|
||||
* ext/socket/getaddrinfo.c (gai_strerror): get rid of warning.
|
||||
* ext/socket/getaddrinfo.c (gai_strerror): make literals const.
|
||||
|
||||
* ext/socket/socket.c (init_inetsock): ensures resources are
|
||||
freed at exceptions.
|
||||
|
|
|
@ -143,7 +143,7 @@ static int get_addr __P((const char *, int, struct addrinfo **,
|
|||
struct addrinfo *, int));
|
||||
static int str_isnumber __P((const char *));
|
||||
|
||||
static char *ai_errlist[] = {
|
||||
static const char *ai_errlist[] = {
|
||||
"success.",
|
||||
"address family for hostname not supported.", /* EAI_ADDRFAMILY */
|
||||
"temporary failure in name resolution.", /* EAI_AGAIN */
|
||||
|
|
Loading…
Reference in a new issue