]> granicus.if.org Git - neomutt/commitdiff
Cleanup "SSL is unavailable" error in mutt_conn_find
authorPietro Cerutti <gahr@gahr.ch>
Thu, 9 Nov 2017 17:03:52 +0000 (17:03 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 9 Nov 2017 23:19:16 +0000 (23:19 +0000)
- Remove the sleep
- Be more informative about the failed connection

Issue #934

mutt_socket.c

index 032a6c30832e33d8b5034536122460b6d2476c46..6e74ad36531e7d2c68dc26c7edb13f24591a00e1 100644 (file)
@@ -102,8 +102,7 @@ struct Connection *mutt_conn_find(const struct Connection *start, const struct A
       return NULL;
     }
 #else
-    mutt_error(_("SSL is unavailable."));
-    mutt_sleep(2);
+    mutt_error(_("SSL is unavailable, cannot connect to %s"), account->host);
     mutt_socket_free(conn);
 
     return NULL;