Subject: | Proxy-authorization broken |
Somehow the user credentials for proxy authorization got lost,
they where available in earlier versions.
Find attached patch to add them again...
Cheers
Ulrich
Subject: | 0001-proxy-auth-fix.patch |
diff --git a/lib/Net/SSLeay.pm b/lib/Net/SSLeay.pm
index 09cf44f..80ceff7 100644
--- a/lib/Net/SSLeay.pm
+++ b/lib/Net/SSLeay.pm
@@ -2491,6 +2491,7 @@ sub set_proxy ($$;**) {
require MIME::Base64 if $proxyuser;
$proxyauth = $proxyuser
? $CRLF . 'Proxy-authorization: Basic '
+ . MIME::Base64::encode("$proxyuser:$proxypass", '')
: '';
}
--
1.7.4.1