* tls.el (tls-program): Remove spurious %s from openssl.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 13 Oct 2010 21:37:55 +0000 (23:37 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 13 Oct 2010 21:37:55 +0000 (23:37 +0200)
lisp/ChangeLog
lisp/tls.el

index f7d30ea..65d2bb0 100644 (file)
@@ -1,5 +1,7 @@
 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * tls.el (tls-program): Remove spurious %s from openssl.
+
        * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
        (nnimap-parse-flags): Fix regexp.
 
index 275e10e..0ab4293 100644 (file)
@@ -77,7 +77,7 @@ and `gnutls-cli' (version 2.0.1) output."
 
 (defcustom tls-program '("gnutls-cli --insecure -p %p %h"
                         "gnutls-cli --insecure -p %p %h --protocols ssl3"
-                        "openssl s_client %s -connect %h:%p -no_ssl2 -ign_eof")
+                        "openssl s_client -connect %h:%p -no_ssl2 -ign_eof")
   "List of strings containing commands to start TLS stream to a host.
 Each entry in the list is tried until a connection is successful.
 %h is replaced with server hostname, %p with port to connect to.