Remove %s from openssl incantation, which is no longer valid.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 14 Oct 2010 18:03:01 +0000 (20:03 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 14 Oct 2010 18:03:01 +0000 (20:03 +0200)
lisp/ChangeLog
lisp/nnimap.el

index 17e67a7..2285baf 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * nnimap.el (nnimap-open-connection): Remove %s from openssl
+       incantation, which is no longer valid.
+
 2010-10-14  Julien Danjou  <julien@danjou.info>
 
        * shr.el: Fix defcustom type (char -> character).
index 3fbcef6..af26a1f 100644 (file)
@@ -319,7 +319,7 @@ textual parts.")
                '("imap"))
               ((eq nnimap-stream 'starttls)
                (let ((tls-program
-                      '("openssl s_client %s -connect %h:%p -no_ssl2 -ign_eof -starttls imap")))
+                      '("openssl s_client -connect %h:%p -no_ssl2 -ign_eof -starttls imap")))
                  (open-tls-stream
                   "*nnimap*" (current-buffer) nnimap-address
                   (setq port (or nnimap-server-port "imap"))))