1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix r63587 with temporal patch to pass the tests. please re-fix it.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2018-06-06 08:34:39 +00:00
parent bd7c46a7aa
commit 37ea653080

View file

@ -245,7 +245,7 @@ module Net # :nodoc:
def write0(*strs) def write0(*strs)
@debug_output << strs.map(&:dump).join if @debug_output @debug_output << strs.map(&:dump).join if @debug_output
case len = @io.write_nonblock(*strs, exception: false) case len = @io.write_nonblock(strs.join, exception: false)
when Integer when Integer
orig_len = len orig_len = len
strs.each_with_index do |str, i| strs.each_with_index do |str, i|