From ff32f51f4f6c0dd7809326521f639c6a633d00f8 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Tue, 14 Nov 2023 14:55:57 +0100 Subject: [PATCH] Fix libstrophe verbosity level always being set to 0 on start Fixup/revert of e55f6d7f4d831d370001999d55dafea9888a4a9f This line had been added because an earlier release of libstrophe missed the initialisation of that variable, which has since been fixed. Signed-off-by: Steffen Jaeckel --- src/xmpp/connection.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c index ca4d11bb..91663422 100644 --- a/src/xmpp/connection.c +++ b/src/xmpp/connection.c @@ -190,7 +190,6 @@ _conn_apply_settings(const char* const jid, const char* const passwd, const char _compute_identifier(jidp->barejid); - xmpp_ctx_set_verbosity(conn.xmpp_ctx, 0); xmpp_conn_set_jid(conn.xmpp_conn, jid); if (passwd) xmpp_conn_set_pass(conn.xmpp_conn, passwd);