diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-07-10 16:02:19 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-07-10 16:02:19 +0200 |
commit | a16616637ace011e25ac8b94606eacf6ff5a98ff (patch) | |
tree | fe8ffb1568d4e36dfb88258da33b976e6d6e68cd /src | |
parent | 2b1582c8166d97b2ce394bf7fbe99139225dfa9d (diff) | |
download | weechat-a16616637ace011e25ac8b94606eacf6ff5a98ff.zip |
irc: remove unneeded message about Diffie-Hellman shared secret exchange during SSL connection to server (closes #857)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/irc/irc-server.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/irc/irc-server.c b/src/plugins/irc/irc-server.c index d06d5bafd..71586e0a6 100644 --- a/src/plugins/irc/irc-server.c +++ b/src/plugins/irc/irc-server.c @@ -4621,14 +4621,6 @@ irc_server_gnutls_callback (const void *pointer, void *data, if (action == WEECHAT_HOOK_CONNECT_GNUTLS_CB_VERIFY_CERT) { - weechat_printf ( - server->buffer, - _("%sgnutls: connected using %d-bit Diffie-Hellman shared secret " - "exchange"), - weechat_prefix ("network"), - IRC_SERVER_OPTION_INTEGER (server, - IRC_SERVER_OPTION_SSL_DHKEY_SIZE)); - /* initialize the certificate structure */ if (gnutls_x509_crt_init (&cert_temp) != GNUTLS_E_SUCCESS) { |