summaryrefslogtreecommitdiff
path: root/www/mozilla-stable/patches/patch-bugzilla220122
diff options
context:
space:
mode:
Diffstat (limited to 'www/mozilla-stable/patches/patch-bugzilla220122')
-rw-r--r--www/mozilla-stable/patches/patch-bugzilla22012219
1 files changed, 0 insertions, 19 deletions
diff --git a/www/mozilla-stable/patches/patch-bugzilla220122 b/www/mozilla-stable/patches/patch-bugzilla220122
deleted file mode 100644
index bb946a2fb8f..00000000000
--- a/www/mozilla-stable/patches/patch-bugzilla220122
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-bugzilla220122,v 1.1 2003/11/27 23:36:42 taya Exp $
-
-diff -ru ../Orig/mozilla/netwerk/protocol/http/src/nsHttpChannel.cpp ./netwerk/protocol/http/src/nsHttpChannel.cpp
---- ../Orig/mozilla/netwerk/protocol/http/src/nsHttpChannel.cpp 2003-05-30 04:29:03.000000000 +0900
-+++ ./netwerk/protocol/http/src/nsHttpChannel.cpp 2003-11-28 00:24:58.000000000 +0900
-@@ -1960,7 +1960,12 @@
- nsHttpAuthIdentity *ident;
- nsCAutoString path;
-
-- if (proxyAuth) {
-+ // it is possible for the origin server to fake a proxy challenge. if
-+ // that happens we need to be sure to use the origin server as the auth
-+ // domain. otherwise, we could inadvertantly expose the user's proxy
-+ // credentials to an origin server.
-+
-+ if (proxyAuth && mConnectionInfo->ProxyHost()) {
- host = mConnectionInfo->ProxyHost();
- port = mConnectionInfo->ProxyPort();
- ident = &mProxyIdent;