summaryrefslogtreecommitdiffstats
path: root/ext/socket/getaddrinfo.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-03 16:02:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-03 16:02:16 +0000
commit42bcfc4a917567de8684ca98d3ec35de2e4b4505 (patch)
treecbbe6adb5b2db94b0a69815ba65428f14e9878c3 /ext/socket/getaddrinfo.c
parent81203d18d4ca38f7860f634382e473b36f4573d7 (diff)
downloadruby-42bcfc4a917567de8684ca98d3ec35de2e4b4505.tar.gz
ruby-42bcfc4a917567de8684ca98d3ec35de2e4b4505.tar.xz
ruby-42bcfc4a917567de8684ca98d3ec35de2e4b4505.zip
* ext/socket/getaddrinfo.c (gai_strerror): make literals const.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2513 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket/getaddrinfo.c')
-rw-r--r--ext/socket/getaddrinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/socket/getaddrinfo.c b/ext/socket/getaddrinfo.c
index eddb67e33..0a6af3111 100644
--- a/ext/socket/getaddrinfo.c
+++ b/ext/socket/getaddrinfo.c
@@ -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 */