From 8f05076d500deb90ab98ea125a53856f204f2dbe Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 1 Mar 2015 00:22:50 -0600 Subject: [PATCH] sasl: making the sasl capability actually sticky seems incompatible with broken implementations, so we make it just a formality instead. --- modules/m_cap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/m_cap.c b/modules/m_cap.c index bfcb70db..93830cf3 100644 --- a/modules/m_cap.c +++ b/modules/m_cap.c @@ -71,7 +71,7 @@ static struct clicap int namelen; } clicap_list[] = { _CLICAP("multi-prefix", CLICAP_MULTI_PREFIX, 0, 0, 0), - _CLICAP("sasl", CLICAP_SASL, 0, 0, CLICAP_FLAGS_STICKY), + _CLICAP("sasl", CLICAP_SASL, 0, 0, 0), _CLICAP("account-notify", CLICAP_ACCOUNT_NOTIFY, 0, 0, 0), _CLICAP("extended-join", CLICAP_EXTENDED_JOIN, 0, 0, 0), _CLICAP("away-notify", CLICAP_AWAY_NOTIFY, 0, 0, 0),