diff options
| author | Joakim Verona | 2012-12-13 11:27:49 +0100 |
|---|---|---|
| committer | Joakim Verona | 2012-12-13 11:27:49 +0100 |
| commit | d5190c9c532f9abd7dbdab094e69c16a3c66bd1a (patch) | |
| tree | feca7f9cfabc2f70c7f71cf7e732ea6692fccd1a | |
| parent | fc25410c44bac7cc8b21f203c0c160591270da0e (diff) | |
| parent | f10331bfe95b36b0880e806b9c18c42550d8159f (diff) | |
| download | emacs-d5190c9c532f9abd7dbdab094e69c16a3c66bd1a.tar.gz emacs-d5190c9c532f9abd7dbdab094e69c16a3c66bd1a.zip | |
auto upstream
| -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" |