mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(url-http-create-request): Call url-recreate-url in proxy case.
This commit is contained in:
parent
025691ed92
commit
231add10db
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2005-06-28 Klaus Straubinger <KSNetz@Arcor.DE> (tiny change)
|
||||
|
||||
* url-http.el (url-http-create-request): Call url-recreate-url
|
||||
in proxy case.
|
||||
|
||||
2005-06-27 Klaus Straubinger <KSNetz@Arcor.DE> (tiny change)
|
||||
|
||||
* url-http.el (url-http-create-request): When computing real-fname,
|
||||
|
|
|
|||
|
|
@ -199,7 +199,9 @@ request.
|
|||
(setq request
|
||||
(concat
|
||||
;; The request
|
||||
(or url-request-method "GET") " " real-fname " HTTP/" url-http-version "\r\n"
|
||||
(or url-request-method "GET") " "
|
||||
(if proxy-obj (url-recreate-url proxy-obj) real-fname)
|
||||
" HTTP/" url-http-version "\r\n"
|
||||
;; Version of MIME we speak
|
||||
"MIME-Version: 1.0\r\n"
|
||||
;; (maybe) Try to keep the connection open
|
||||
|
|
|
|||
Loading…
Reference in a new issue