aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--lib/net/http.rb12
2 files changed, 2 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index e130bdb5a0..ca9c71f9af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,12 +15,6 @@ Sat Jan 3 18:19:50 2015 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* test/fiddle/test_cparser.rb: added type_alias test for parse_ctype
and parse_struct_signature.
-Sat Jan 3 16:02:20 2015 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
-
- * lib/net/http.rb (Net::HTTP.proxy_user): retrieve proxy user from http_proxy.
- * lib/net/http.rb (Net::HTTP.proxy_pass): retrieve proxy password from http_proxy.
- Patch by Rafael dos Santos Silva. [fix GH-763]
-
Sat Jan 3 11:50:16 2015 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* ext/openssl/ossl.h: avoid to build failure of Windows environment.
diff --git a/lib/net/http.rb b/lib/net/http.rb
index ddb4fe8c6a..37b6b82694 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -1059,20 +1059,12 @@ module Net #:nodoc:
# The proxy username, if one is configured
def proxy_user
- if @proxy_from_env then
- proxy_uri && proxy_uri.user
- else
- @proxy_user
- end
+ @proxy_user
end
# The proxy password, if one is configured
def proxy_pass
- if @proxy_from_env then
- proxy_uri && proxy_uri.password
- else
- @proxy_pass
- end
+ @proxy_pass
end
alias proxyaddr proxy_address #:nodoc: obsolete