summaryrefslogtreecommitdiffstats
path: root/ext/socket
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-26 07:50:53 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-26 07:50:53 +0000
commit99ae955a72d5a3a308601b33df2de7fbad47535c (patch)
treeda449a9d76198a8f62023bfd637a11f0183408e6 /ext/socket
parentd045e53f7978bcf4d6ca4aa1fc3729817377be20 (diff)
downloadruby-99ae955a72d5a3a308601b33df2de7fbad47535c.tar.gz
ruby-99ae955a72d5a3a308601b33df2de7fbad47535c.tar.xz
ruby-99ae955a72d5a3a308601b33df2de7fbad47535c.zip
* ext/socket/socket.c: turn on do_not_reverse_lookup by default.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9858 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket')
-rw-r--r--ext/socket/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/socket/socket.c b/ext/socket/socket.c
index c29d4bc75..d31552620 100644
--- a/ext/socket/socket.c
+++ b/ext/socket/socket.c
@@ -70,7 +70,7 @@
#endif
#include "sockport.h"
-static int do_not_reverse_lookup = 0;
+static int do_not_reverse_lookup = 1;
#define FMODE_NOREVLOOKUP 0x100
VALUE rb_cBasicSocket;