diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-07-20 17:29:19 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-07-20 17:29:19 +0200 |
commit | 87e342dd9e714ec1200b1a8c4a7e5e58ffe1b2e6 (patch) | |
tree | 93e2051d69dd427dc02d58897d8dd67976c787cb /src/core/wee-config.c | |
parent | a3cc9bbe7e5dc868223f87471d1b569506341c86 (diff) | |
download | weechat-87e342dd9e714ec1200b1a8c4a7e5e58ffe1b2e6.zip |
core: add CA_FILE option in cmake and configure to setup default value of option weechat.network.gnutls_ca_file (task #12725)
Diffstat (limited to 'src/core/wee-config.c')
-rw-r--r-- | src/core/wee-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c index 1855f070f..ad547481b 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -3004,7 +3004,7 @@ config_weechat_init_options () "gnutls_ca_file", "string", N_("file containing the certificate authorities (\"%h\" will be " "replaced by WeeChat home, \"~/.weechat\" by default)"), - NULL, 0, 0, "/etc/ssl/certs/ca-certificates.crt", NULL, 0, NULL, NULL, + NULL, 0, 0, CA_FILE, NULL, 0, NULL, NULL, &config_change_network_gnutls_ca_file, NULL, NULL, NULL); config_network_gnutls_handshake_timeout = config_file_new_option ( weechat_config_file, ptr_section, |