Silence maybe uninitialized warning

Wouldn't happen anyway since configPath will always return at least
one path.
weechat-hashes
C. McEnroe 2021-08-09 20:12:44 -04:00
parent 56139227a4
commit a585b1b073
1 changed files with 1 additions and 1 deletions

2
irc.c
View File

@ -52,7 +52,7 @@ void ircConfig(
config = tls_config_new();
if (!config) errx(EX_SOFTWARE, "tls_config_new");
int error;
int error = 0;
if (insecure) {
tls_config_insecure_noverifycert(config);
tls_config_insecure_noverifyname(config);