From 03b99ae3d29aa9b49e6e1bd538feddb9813d6daf Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Thu, 23 Mar 2017 10:30:18 -0400 Subject: [PATCH] res_xmpp: Correctly check return value of SSL_connect SSL_connect returns non-zero for both success and some error conditions so simply negating is inadequate. Change-Id: Ifbf882896e598703b6c615407fa456d3199f95b1 --- res/res_xmpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_xmpp.c b/res/res_xmpp.c index e422c14a2a..aee2cf5cf5 100644 --- a/res/res_xmpp.c +++ b/res/res_xmpp.c @@ -2664,7 +2664,7 @@ static int xmpp_client_requested_tls(struct ast_xmpp_client *client, struct ast_ goto failure; } - if (!SSL_connect(client->ssl_session)) { + if (SSL_connect(client->ssl_session) <= 0) { goto failure; }