Revision
5220
Author
watson1978@gmail.com
Date
2011-02-03 18:24:53 -0800 (Thu, 03 Feb 2011)

Log Message

Default value of BasicSocket.do_not_reverse_lookup was changed into true with CRuby 1.9.2.

Modified Paths

Diff

Modified: MacRuby/trunk/ext/socket/socket.c (5219 => 5220)


--- MacRuby/trunk/ext/socket/socket.c	2011-02-04 00:45:08 UTC (rev 5219)
+++ MacRuby/trunk/ext/socket/socket.c	2011-02-04 02:24:53 UTC (rev 5220)
@@ -79,7 +79,7 @@
 // TODO
 #define rb_io_set_nonblock(x)
 
-static int do_not_reverse_lookup = 0;
+static int do_not_reverse_lookup = 1;
 #define FMODE_NOREVLOOKUP 0x100
 
 VALUE rb_cBasicSocket;

Modified: MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/do_not_reverse_lookup_tags.txt (5219 => 5220)


--- MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/do_not_reverse_lookup_tags.txt	2011-02-04 00:45:08 UTC (rev 5219)
+++ MacRuby/trunk/spec/frozen/tags/macruby/library/socket/basicsocket/do_not_reverse_lookup_tags.txt	2011-02-04 02:24:53 UTC (rev 5220)
@@ -1 +0,0 @@
-fails:BasicSocket.do_not_reverse_lookup defaults to true