From a572d055a8cea591c1559666f35350fbf2e6fd7e Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 20 May 2012 02:10:19 +0100 Subject: [PATCH] Fixed wrong flag setting --- src/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth.c b/src/auth.c index 3bbdfec..2371925 100644 --- a/src/auth.c +++ b/src/auth.c @@ -214,7 +214,7 @@ static int _handle_features(xmpp_conn_t * const conn, if (child && (strcmp(xmpp_stanza_get_ns(child), XMPP_NS_TLS) == 0)) conn->tls_support = 1; } else { - conn->tls_disabled = 0; + conn->tls_support = 0; } }