From a589946b42b3e9c83a566673949c6820dec3b00d Mon Sep 17 00:00:00 2001 From: Aaron Jones Date: Sat, 8 Jun 2019 20:59:36 +0000 Subject: [PATCH] Revert "m_sasl: Don't process authentication messages if SASL has been aborted" SASL does not work with this commit in the tree. This reverts commit f44a0d7ea219371cf3e85c7efe80b06984795091. --- modules/m_sasl.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/m_sasl.c b/modules/m_sasl.c index c735580e..f302f1b6 100644 --- a/modules/m_sasl.c +++ b/modules/m_sasl.c @@ -229,10 +229,6 @@ me_sasl(struct Client *client_p, struct Client *source_p, if(!IsService(agent_p)) return 0; - /* If SASL has been aborted, do nothing. */ - if (target_p->localClient->sasl_out != 0) - return 0; - /* Reject if someone has already answered. */ if(*target_p->localClient->sasl_agent && strncmp(parv[1], target_p->localClient->sasl_agent, IDLEN)) return 0;