From 1b66e88cca2a932cd787c4bf0665516b33fd303c Mon Sep 17 00:00:00 2001 From: aamine Date: Tue, 24 Jun 2003 07:42:46 +0000 Subject: * lib/net/http.rb (HTTPHeader#proxy_basic_auth): missing `@'. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/http.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/net/http.rb b/lib/net/http.rb index b7054464b..65424bd61 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -1152,7 +1152,7 @@ module Net end def proxy_basic_auth( account, password ) - header['proxy-authorization'] = basic_encode(account, password) + @header['proxy-authorization'] = basic_encode(account, password) end def basic_encode( account, password ) -- cgit