diff options
author | Andreas Schwab <schwab@suse.de> | 2012-12-13 10:48:54 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2012-12-13 10:48:54 +0100 |
commit | f10331bfe95b36b0880e806b9c18c42550d8159f (patch) | |
tree | 9c356889e1ff53655e1992f1cae1ef474fd708c8 /lisp/net/tls.el | |
parent | 5f3a3bb1f5f0dffb8f2aa9c1437da623c48ac8dd (diff) | |
download | emacs-f10331bfe95b36b0880e806b9c18c42550d8159f.tar.gz emacs-f10331bfe95b36b0880e806b9c18c42550d8159f.tar.bz2 emacs-f10331bfe95b36b0880e806b9c18c42550d8159f.zip |
* net/tls.el (tls-program): Update customize type.
Diffstat (limited to 'lisp/net/tls.el')
-rw-r--r-- | lisp/net/tls.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/net/tls.el b/lisp/net/tls.el index 75d178e3225..116c7e9d84a 100644 --- a/lisp/net/tls.el +++ b/lisp/net/tls.el @@ -89,10 +89,14 @@ Also see `tls-success' for what the program should output after successful negotiation." :type '(choice + (const :tag "Default list of commands" + ("gnutls-cli --insecure -p %p %h" + "gnutls-cli --insecure -p %p %h --protocols ssl3" + "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")) (list :tag "Choose commands" :value - ("gnutls-cli -p %p %h" - "gnutls-cli -p %p %h --protocols ssl3" + ("gnutls-cli --insecure -p %p %h" + "gnutls-cli --insecure -p %p %h --protocols ssl3" "openssl s_client -connect %h:%p -no_ssl2 -ign_eof") (set :inline t ;; FIXME: add brief `:tag "..."' descriptions. @@ -102,14 +106,10 @@ successful negotiation." (const "gnutls-cli --x509cafile /etc/ssl/certs/ca-certificates.crt -p %p %h --protocols ssl3") (const "openssl s_client -connect %h:%p -CAfile /etc/ssl/certs/ca-certificates.crt -no_ssl2 -ign_eof") ;; No trust check: - (const "gnutls-cli -p %p %h") - (const "gnutls-cli -p %p %h --protocols ssl3") + (const "gnutls-cli --insecure -p %p %h") + (const "gnutls-cli --insecure -p %p %h --protocols ssl3") (const "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")) (repeat :inline t :tag "Other" (string))) - (const :tag "Default list of commands" - ("gnutls-cli -p %p %h" - "gnutls-cli -p %p %h --protocols ssl3" - "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")) (list :tag "List of commands" (repeat :tag "Command" (string)))) :version "22.1" |