diff options
| author | Andreas Schwab | 2012-12-13 10:48:54 +0100 |
|---|---|---|
| committer | Andreas Schwab | 2012-12-13 10:48:54 +0100 |
| commit | f10331bfe95b36b0880e806b9c18c42550d8159f (patch) | |
| tree | 9c356889e1ff53655e1992f1cae1ef474fd708c8 | |
| parent | 5f3a3bb1f5f0dffb8f2aa9c1437da623c48ac8dd (diff) | |
| download | emacs-f10331bfe95b36b0880e806b9c18c42550d8159f.tar.gz emacs-f10331bfe95b36b0880e806b9c18c42550d8159f.zip | |
* net/tls.el (tls-program): Update customize type.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/net/tls.el | 16 |
2 files changed, 12 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0f4eaff5797..fd6671cc29a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-12-13 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * net/tls.el (tls-program): Update customize type. | ||
| 4 | |||
| 1 | 2012-12-13 Juanma Barranquero <lekktu@gmail.com> | 5 | 2012-12-13 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * emacs-lisp/edebug.el (edebug--require-cl-read): New function. | 7 | * emacs-lisp/edebug.el (edebug--require-cl-read): New function. |
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 | |||
| 89 | successful negotiation." | 89 | successful negotiation." |
| 90 | :type | 90 | :type |
| 91 | '(choice | 91 | '(choice |
| 92 | (const :tag "Default list of commands" | ||
| 93 | ("gnutls-cli --insecure -p %p %h" | ||
| 94 | "gnutls-cli --insecure -p %p %h --protocols ssl3" | ||
| 95 | "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")) | ||
| 92 | (list :tag "Choose commands" | 96 | (list :tag "Choose commands" |
| 93 | :value | 97 | :value |
| 94 | ("gnutls-cli -p %p %h" | 98 | ("gnutls-cli --insecure -p %p %h" |
| 95 | "gnutls-cli -p %p %h --protocols ssl3" | 99 | "gnutls-cli --insecure -p %p %h --protocols ssl3" |
| 96 | "openssl s_client -connect %h:%p -no_ssl2 -ign_eof") | 100 | "openssl s_client -connect %h:%p -no_ssl2 -ign_eof") |
| 97 | (set :inline t | 101 | (set :inline t |
| 98 | ;; FIXME: add brief `:tag "..."' descriptions. | 102 | ;; FIXME: add brief `:tag "..."' descriptions. |
| @@ -102,14 +106,10 @@ successful negotiation." | |||
| 102 | (const "gnutls-cli --x509cafile /etc/ssl/certs/ca-certificates.crt -p %p %h --protocols ssl3") | 106 | (const "gnutls-cli --x509cafile /etc/ssl/certs/ca-certificates.crt -p %p %h --protocols ssl3") |
| 103 | (const "openssl s_client -connect %h:%p -CAfile /etc/ssl/certs/ca-certificates.crt -no_ssl2 -ign_eof") | 107 | (const "openssl s_client -connect %h:%p -CAfile /etc/ssl/certs/ca-certificates.crt -no_ssl2 -ign_eof") |
| 104 | ;; No trust check: | 108 | ;; No trust check: |
| 105 | (const "gnutls-cli -p %p %h") | 109 | (const "gnutls-cli --insecure -p %p %h") |
| 106 | (const "gnutls-cli -p %p %h --protocols ssl3") | 110 | (const "gnutls-cli --insecure -p %p %h --protocols ssl3") |
| 107 | (const "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")) | 111 | (const "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")) |
| 108 | (repeat :inline t :tag "Other" (string))) | 112 | (repeat :inline t :tag "Other" (string))) |
| 109 | (const :tag "Default list of commands" | ||
| 110 | ("gnutls-cli -p %p %h" | ||
| 111 | "gnutls-cli -p %p %h --protocols ssl3" | ||
| 112 | "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")) | ||
| 113 | (list :tag "List of commands" | 113 | (list :tag "List of commands" |
| 114 | (repeat :tag "Command" (string)))) | 114 | (repeat :tag "Command" (string)))) |
| 115 | :version "22.1" | 115 | :version "22.1" |