mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 02:31:59 +00:00
Fix for bug 22405 (proxy authentication) We were skipping over proxy authentication becuz proxytransparent was false. r=ruslan
This commit is contained in:
parent
67b72ae485
commit
e65d13c7ea
@ -1404,7 +1404,7 @@ nsHTTPChannel::Open(PRBool bIgnoreCache)
|
||||
authStr);
|
||||
}
|
||||
|
||||
if (mProxy && *mProxy && mProxyTransparent)
|
||||
if (mProxy && *mProxy && !mProxyTransparent)
|
||||
{
|
||||
nsXPIDLCString proxyAuthStr;
|
||||
if (NS_SUCCEEDED(pAuthEngine->GetProxyAuthString(mProxy,
|
||||
|
Loading…
Reference in New Issue
Block a user