aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net/ftp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/ftp.rb')
-rw-r--r--lib/net/ftp.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb
index 31c4fb007e..cafe39fad0 100644
--- a/lib/net/ftp.rb
+++ b/lib/net/ftp.rb
@@ -262,13 +262,7 @@ module Net
@ssl_handshake_timeout = options[:ssl_handshake_timeout]
@read_timeout = options[:read_timeout] || 60
if host
- if options[:port]
- connect(host, options[:port] || FTP_PORT)
- else
- # spec/ruby/library/net/ftp/initialize_spec.rb depends on
- # the number of arguments passed to connect....
- connect(host)
- end
+ connect(host, options[:port] || FTP_PORT)
if options[:username]
login(options[:username], options[:password], options[:account])
end