diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-11-03 22:01:50 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-11-03 22:01:50 +0100 |
commit | ab2684fd529257ffc271b8112ac8475805a3325f (patch) | |
tree | 271bb168851ab3b06159bce038c87b56bf1b8f62 /src/plugins | |
parent | d4cba7b7a3384dd82552fc339807d6fad402bf9f (diff) | |
download | weechat-ab2684fd529257ffc271b8112ac8475805a3325f.zip |
relay: change default value of option relay.network.tls_priorities to `NORMAL`
It is no more needed to remove `VERS-SSL3.0` because it is no longer in the
default priorities since GnuTLS 3.4.0 (released on 2015-04-08).
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/relay/relay-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relay/relay-config.c b/src/plugins/relay/relay-config.c index f90953a30..c7765f9ad 100644 --- a/src/plugins/relay/relay-config.c +++ b/src/plugins/relay/relay-config.c @@ -1270,7 +1270,7 @@ relay_config_init () "documentation of function gnutls_priority_init in gnutls " "manual, common strings are: \"PERFORMANCE\", \"NORMAL\", " "\"SECURE128\", \"SECURE256\", \"EXPORT\", \"NONE\")"), - NULL, 0, 0, "NORMAL:-VERS-SSL3.0", NULL, 0, + NULL, 0, 0, "NORMAL", NULL, 0, &relay_config_check_network_tls_priorities, NULL, NULL, &relay_config_change_network_tls_priorities, NULL, NULL, NULL, NULL, NULL); |