1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-02 13:13:14 +02:00

link::options::tls was not working (an alias for link::options::ssl)

This commit is contained in:
Bram Matthys
2019-08-18 19:25:42 +02:00
parent fc0c06621b
commit e72845bddf
+1 -1
View File
@@ -6498,7 +6498,7 @@ int _test_link(ConfigFile *conf, ConfigEntry *ce)
{
if (!strcmp(ceppp->ce_varname, "autoconnect"))
;
else if (!strcmp(ceppp->ce_varname, "ssl") || strcmp(ceppp->ce_varname, "tls"))
else if (!strcmp(ceppp->ce_varname, "ssl") || !strcmp(ceppp->ce_varname, "tls"))
;
else if (!strcmp(ceppp->ce_varname, "insecure"))
;