summaryrefslogtreecommitdiff
path: root/ext/socket/init.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-02-02 09:15:19 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-02-02 09:15:19 +0000
commit4dfd71005cf4ee14db965cd155417f8657ed2c24 (patch)
tree67d10e1f49484ec816c6eae32f887520c43a40a6 /ext/socket/init.c
parent970e90dd1572994d3d9229725e12d47b3674fcbf (diff)
* ext/socket/socket.c: turn on do_not_reverse_lookup by default,
which has been reverted in r9880 probably unintentionally, according to matz. [ruby-core:24530] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket/init.c')
-rw-r--r--ext/socket/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/socket/init.c b/ext/socket/init.c
index b143dccd5f..d744f8c559 100644
--- a/ext/socket/init.c
+++ b/ext/socket/init.c
@@ -28,7 +28,7 @@ VALUE rb_eSocket;
VALUE rb_cSOCKSSocket;
#endif
-int rsock_do_not_reverse_lookup = 0;
+int rsock_do_not_reverse_lookup = 1;
void
rsock_raise_socket_error(const char *reason, int error)