Skip to content

Commit

Permalink
Remove TLS version notification
Browse files Browse the repository at this point in the history
The reason for this patch is that the "TLS connection" message adds an
unnecessary, annoying, unskippable delay to _every_ mutt startup.

(Almost as if its intention was to _discourage_ TLS usage...)
  • Loading branch information
grawity committed Sep 18, 2015
1 parent 5147a6c commit 25998b8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions mutt_ssl.c
Expand Up @@ -444,10 +444,6 @@ static int ssl_negotiate (CONNECTION *conn, sslsockdata* ssldata)
if (!ssl_check_certificate (conn, ssldata))
return -1;

mutt_message (_("%s connection using %s (%s)"),
SSL_get_version(ssldata->ssl), SSL_get_cipher_version (ssldata->ssl), SSL_get_cipher_name (ssldata->ssl));
mutt_sleep (0);

return 0;
}

Expand Down

0 comments on commit 25998b8

Please sign in to comment.