mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-14 16:50:58 +00:00
Fix old problem with HTTPS HTTP 0.9 sentinels
* lisp/url/url-http.el (url-http-end-of-document-sentinel): Pass on the tls parameter if we have HTTPS (bug#14983).
This commit is contained in:
parent
d32d9373b5
commit
1f137133ed
@ -1024,7 +1024,9 @@ should be shown to the user."
|
||||
(setq url-using-proxy
|
||||
(url-generic-parse-url url-using-proxy)))
|
||||
(url-http url-current-object url-callback-function
|
||||
url-callback-arguments (current-buffer)))))
|
||||
url-callback-arguments (current-buffer)
|
||||
(and (string= "https" (url-type url-current-object))
|
||||
'tls)))))
|
||||
((url-http-parse-headers)
|
||||
(url-http-activate-callback))))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user