aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-03 23:18:20 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-03 23:18:20 +0000
commit58835a94efd9fc8543c0c3243d2d70f59fce3786 (patch)
tree86a2b31b81fd3794cbebcd0a51b13f4b73deba60
parent819e1756adfd78e25492a9492771ba4390c2af48 (diff)
downloadruby-58835a94efd9fc8543c0c3243d2d70f59fce3786.tar.gz
* lib/net/http.rb (edit_path): use path which is absolute ftp url
on using ftp_proxy. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50157 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/net/http.rb8
2 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0bc4decfb7..b32107a267 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Apr 4 08:16:43 2015 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * lib/net/http.rb (edit_path): use path which is absolute ftp url
+ on using ftp_proxy.
+
Fri Apr 3 11:43:17 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_eval.c (vm_call0_cfunc): update invoker arguments.
diff --git a/lib/net/http.rb b/lib/net/http.rb
index 37b6b82694..2fc541c2e8 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -1083,8 +1083,12 @@ module Net #:nodoc:
end
def edit_path(path)
- if proxy? and not use_ssl? then
- "http://#{addr_port}#{path}"
+ if proxy?
+ if path.start_with?("ftp://") || use_ssl?
+ path
+ else
+ "http://#{addr_port}#{path}"
+ end
else
path
end