From: Pietro Cerutti Date: Thu, 9 Nov 2017 17:03:52 +0000 (+0000) Subject: Cleanup "SSL is unavailable" error in mutt_conn_find X-Git-Tag: neomutt-20171208~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4b7a47a49d03d56d1d1bd7f33df9b2a4eab11d5;p=neomutt Cleanup "SSL is unavailable" error in mutt_conn_find - Remove the sleep - Be more informative about the failed connection Issue #934 --- diff --git a/mutt_socket.c b/mutt_socket.c index 032a6c308..6e74ad365 100644 --- a/mutt_socket.c +++ b/mutt_socket.c @@ -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;