From 37ea653080579e30a912d32c50b76b8c1a5619a7 Mon Sep 17 00:00:00 2001
From: ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
Date: Wed, 6 Jun 2018 08:34:39 +0000
Subject: [PATCH] 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
---
 lib/net/protocol.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb
index cf9fc3d434..94903afdfc 100644
--- a/lib/net/protocol.rb
+++ b/lib/net/protocol.rb
@@ -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|