mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-15 21:49:02 -04:00
Add debug
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9165 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
82d7d838a8
commit
6b7eb8136b
@ -238,6 +238,12 @@ class ModuleSASL : public Module
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
User* target = ServerInstance->FindNick((*parameters)[2]);
|
User* target = ServerInstance->FindNick((*parameters)[2]);
|
||||||
|
if (!target)
|
||||||
|
{
|
||||||
|
ServerInstance->Logs->Log("m_sasl", DEBUG,"User not found in sasl ENCAP event: %s", (*parameters)[2].c_str());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
SaslAuthenticator *sasl;
|
SaslAuthenticator *sasl;
|
||||||
if (!target->GetExt("sasl_authenticator", sasl))
|
if (!target->GetExt("sasl_authenticator", sasl))
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user