Automated branch merge.
This commit is contained in:
commit
978daf7118
10
src/s_user.c
10
src/s_user.c
|
@ -649,12 +649,22 @@ introduce_client(struct Client *client_p, struct Client *source_p, struct User *
|
||||||
else
|
else
|
||||||
identifyservice_p = NULL;
|
identifyservice_p = NULL;
|
||||||
if (identifyservice_p != NULL)
|
if (identifyservice_p != NULL)
|
||||||
|
{
|
||||||
|
if (!EmptyString(source_p->localClient->auth_user))
|
||||||
|
sendto_one(identifyservice_p, ":%s PRIVMSG %s :%s %s %s",
|
||||||
|
get_id(source_p, identifyservice_p),
|
||||||
|
ConfigFileEntry.identifyservice,
|
||||||
|
ConfigFileEntry.identifycommand,
|
||||||
|
source_p->localClient->auth_user,
|
||||||
|
source_p->localClient->passwd);
|
||||||
|
else
|
||||||
sendto_one(identifyservice_p, ":%s PRIVMSG %s :%s %s",
|
sendto_one(identifyservice_p, ":%s PRIVMSG %s :%s %s",
|
||||||
get_id(source_p, identifyservice_p),
|
get_id(source_p, identifyservice_p),
|
||||||
ConfigFileEntry.identifyservice,
|
ConfigFileEntry.identifyservice,
|
||||||
ConfigFileEntry.identifycommand,
|
ConfigFileEntry.identifycommand,
|
||||||
source_p->localClient->passwd);
|
source_p->localClient->passwd);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
memset(source_p->localClient->passwd, 0, strlen(source_p->localClient->passwd));
|
memset(source_p->localClient->passwd, 0, strlen(source_p->localClient->passwd));
|
||||||
rb_free(source_p->localClient->passwd);
|
rb_free(source_p->localClient->passwd);
|
||||||
source_p->localClient->passwd = NULL;
|
source_p->localClient->passwd = NULL;
|
||||||
|
|
Loading…
Reference in New Issue