From d08e1004e0ee1286e4513de2a170391a4d0a0116 Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Sun, 7 Apr 2019 16:44:49 -0700 Subject: Fix keyword argument separation issues in lib Mostly requires adding ** in either calls or method definitions. --- lib/net/ftp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/net/ftp.rb') diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb index e68d825dcf..757daa9224 100644 --- a/lib/net/ftp.rb +++ b/lib/net/ftp.rb @@ -1456,7 +1456,7 @@ module Net if defined?(OpenSSL::SSL::SSLSocket) class BufferedSSLSocket < BufferedSocket - def initialize(*args) + def initialize(*args, **options) super @is_shutdown = false end -- cgit v1.2.3