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:
parent
bd7c46a7aa
commit
37ea653080
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ module Net # :nodoc:
|
|||
|
||||
def write0(*strs)
|
||||
@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
|
||||
orig_len = len
|
||||
strs.each_with_index do |str, i|
|
||||
|
|
Loading…
Reference in a new issue