summaryrefslogtreecommitdiff
path: root/lib/net/http.rb
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-24 07:42:46 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-24 07:42:46 +0000
commit170aaabe4b118d2d2cc85e138d79f11c86166b4e (patch)
treed47be35932ef5bc6ede764b57938dafc0c9226ed /lib/net/http.rb
parent9fa20b9973a31c9e7482e7cc9cc075dc0aec8268 (diff)
* lib/net/http.rb (HTTPHeader#proxy_basic_auth): missing `@'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/http.rb')
-rw-r--r--lib/net/http.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index b7054464b8..65424bd61b 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 )