1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-01 06:16:38 +02:00

Fix SASL with atheme

This commit is contained in:
Bram Matthys
2019-11-18 09:26:51 +01:00
parent 99d3d8e450
commit bf3ee74659
+1 -1
View File
@@ -117,7 +117,7 @@ CMD_FUNC(cmd_sasl)
if (!SASL_SERVER || MyUser(client) || (parc < 4) || !parv[4])
return;
if (!strcasecmp(parv[1], me.name))
if (!strcasecmp(parv[1], me.name) || !strncmp(parv[1], me.id, 3))
{
Client *target;