1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

* net/gnutls.el (gnutls-negotiate): Prevent destructive modification of

customization option `gnutls-verify-error.
This commit is contained in:
Mario Lang 2014-07-01 20:48:24 +02:00
parent 6372fc12fe
commit dd72a0ca55
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2014-07-01 Mario Lang <mlang@delysid.org>
* net/gnutls.el (gnutls-negotiate): Prevent destructive modification of
cosutomization option `gnutls-verify-error'.
2014-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
* simple.el (deactivate-mark, set-mark-command, handle-shift-selection):

View file

@ -214,7 +214,7 @@ defaults to GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT."
(cl-mapcan
(lambda (check)
(when (string-match (car check) hostname)
(cdr check)))
(copy-sequence (cdr check))))
gnutls-verify-error))
;; else it's nil
(t nil))))