From 4ed1626da6e9f060129808273b7b94e3d4f69dc9 Mon Sep 17 00:00:00 2001 From: Jason Rumney Date: Sat, 11 Aug 2012 22:48:37 +0800 Subject: [PATCH] * lisp/url/url-http.el (url-http-create-request): Use url-http-proxy to look up proxy credentials. --- lisp/url/ChangeLog | 5 +++++ lisp/url/url-http.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index ae224f4102f..88e3e06089b 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,8 @@ +2012-08-11 Jason Rumney + + * url-http.el (url-http-create-request): Use url-http-proxy to + look up proxy credentials. + 2012-07-28 David Engster * url-dav.el (url-dav-supported-p): Added doc-string and remove diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 0b5ecc7bf98..ac4bd365eca 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -239,7 +239,7 @@ request.") nil (let ((url-basic-auth-storage 'url-http-proxy-basic-auth-storage)) - (url-get-authentication url-http-target-url nil 'any nil)))) + (url-get-authentication url-http-proxy nil 'any nil)))) (real-fname (url-filename url-http-target-url)) (host (url-host url-http-target-url)) (auth (if (cdr-safe (assoc "Authorization" url-http-extra-headers)) -- 2.39.5