aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-17 05:59:08 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-17 05:59:08 +0000
commitd6ede643fc652c254748ea85d87e31c2f06a7d25 (patch)
tree15d8b81cf68f2987685cea89a21f3be3eacf1deb /ChangeLog
parent4148b8846521f6cdbe35bc79a63e0512f65fe346 (diff)
downloadruby-d6ede643fc652c254748ea85d87e31c2f06a7d25.tar.gz
lib/webrick/server.rb: avoid redundant fcntl call
Sockets are close-on-exec by default since Ruby 2.0, so it is redundant to set it again. * lib/webrick/server.rb (accept_client): avoid redundant fcntl call [Feature #11137] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50519 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 83be18896b..ce210d4062 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun May 17 14:57:42 2015 Eric Wong <e@80x24.org>
+
+ * lib/webrick/server.rb (accept_client): avoid redundant fcntl call
+ [Feature #11137]
+
Sun May 17 12:13:33 2015 Eric Wong <e@80x24.org>
* ext/socket/init.c (cloexec_accept): support nonblock flag and