From e72845bddfa4bfc337b796efc93da1a3fd1e27c5 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sun, 18 Aug 2019 19:25:42 +0200 Subject: [PATCH] link::options::tls was not working (an alias for link::options::ssl) --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.c b/src/conf.c index 6366c740f..2eca9c430 100644 --- a/src/conf.c +++ b/src/conf.c @@ -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")) ;