Silence maybe uninitialized warning
Wouldn't happen anyway since configPath will always return at least one path.weechat-hashes
parent
56139227a4
commit
a585b1b073
2
irc.c
2
irc.c
|
@ -52,7 +52,7 @@ void ircConfig(
|
||||||
config = tls_config_new();
|
config = tls_config_new();
|
||||||
if (!config) errx(EX_SOFTWARE, "tls_config_new");
|
if (!config) errx(EX_SOFTWARE, "tls_config_new");
|
||||||
|
|
||||||
int error;
|
int error = 0;
|
||||||
if (insecure) {
|
if (insecure) {
|
||||||
tls_config_insecure_noverifycert(config);
|
tls_config_insecure_noverifycert(config);
|
||||||
tls_config_insecure_noverifyname(config);
|
tls_config_insecure_noverifyname(config);
|
||||||
|
|
Loading…
Reference in New Issue