From 1b876ce0ec9ff821cff4623d56d1a01eaaa4de2f Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Wed, 27 Jul 2016 15:49:18 +0200 Subject: [PATCH] Revert change that always disable TLS tests. --- tester/tester.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tester/tester.c b/tester/tester.c index 09a71758b..826ae6e67 100644 --- a/tester/tester.c +++ b/tester/tester.c @@ -266,7 +266,7 @@ bool_t transport_supported(LinphoneTransportType transport) { bool_t supported = sal_transport_available(sal,(SalTransport)transport); if (!supported) ms_message("TLS transport not supported, falling back to TCP if possible otherwise skipping test."); sal_uninit(sal); - return 0 & supported; + return supported; } #if __clang__ || ((__GNUC__ == 4 && __GNUC_MINOR__ >= 6) || __GNUC__ > 4)