1
0
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:
Lars Ingebrigtsen 2019-09-24 09:57:57 +02:00
parent d32d9373b5
commit 1f137133ed

View File

@ -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))))))