aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Zlatanov2017-12-09 17:52:01 -0500
committerTed Zlatanov2017-12-09 17:55:17 -0500
commitcefca2b8aca742cebaae6110704a56d7cd76f500 (patch)
tree85b963fb34a628ce8cdaa550bdd95d490a8c9d56
parent122e7264b88049e8d1a0b54dd993f137238c33fb (diff)
downloademacs-cefca2b8aca742cebaae6110704a56d7cd76f500.tar.gz
emacs-cefca2b8aca742cebaae6110704a56d7cd76f500.zip
Add /etc/ssl/cert.pem to gnutls-trustfiles for macOS
Problem reported by Mark Ferlatte (Bug#28603). * lisp/net/gnutls.el (gnutls-trustfiles): Add /etc/ssl/cert.pem for macOS.
-rw-r--r--lisp/net/gnutls.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el
index d4943a33031..98f7b585588 100644
--- a/lisp/net/gnutls.el
+++ b/lisp/net/gnutls.el
@@ -92,6 +92,7 @@ to all of the tests described above."
92 "/etc/ssl/ca-bundle.pem" ; Suse 92 "/etc/ssl/ca-bundle.pem" ; Suse
93 "/usr/ssl/certs/ca-bundle.crt" ; Cygwin 93 "/usr/ssl/certs/ca-bundle.crt" ; Cygwin
94 "/usr/local/share/certs/ca-root-nss.crt" ; FreeBSD 94 "/usr/local/share/certs/ca-root-nss.crt" ; FreeBSD
95 "/etc/ssl/cert.pem" ; macOS
95 ) 96 )
96 "List of CA bundle location filenames or a function returning said list. 97 "List of CA bundle location filenames or a function returning said list.
97The files may be in PEM or DER format, as per the GnuTLS documentation. 98The files may be in PEM or DER format, as per the GnuTLS documentation.