diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-04-17 16:07:14 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-11 21:05:42 +0200 |
commit | e5d18e1221b7f232822f0110d80f042ab3bb708e (patch) | |
tree | 26cde6ae03333017c73eaf092684c71cd798f5e1 /src/core/wee-config.c | |
parent | 9e7d052517ea4c349a05e1dfcf9915781089af59 (diff) | |
download | weechat-e5d18e1221b7f232822f0110d80f042ab3bb708e.zip |
core: evaluate option weechat.network.gnutls_ca_file (issue #1285)
Diffstat (limited to 'src/core/wee-config.c')
-rw-r--r-- | src/core/wee-config.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c index d352d08bc..aa7fd4d0d 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -4497,8 +4497,9 @@ config_weechat_init_options () config_network_gnutls_ca_file = config_file_new_option ( weechat_config_file, ptr_section, "gnutls_ca_file", "string", - N_("file containing the certificate authorities (\"%h\" will be " - "replaced by WeeChat home, \"~/.weechat\" by default)"), + N_("file containing the certificate authorities " + "(path is evaluated, see function string_eval_path_home in " + "plugin API reference)"), NULL, 0, 0, CA_FILE, NULL, 0, NULL, NULL, NULL, &config_change_network_gnutls_ca_file, NULL, NULL, |