1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-06 21:43:13 +02:00

send_multinotice() -> sendnotice_multiline()

This commit is contained in:
Bram Matthys
2019-11-01 13:12:40 +01:00
parent dfa83aa6e5
commit 6402dfd2fe
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -362,7 +362,7 @@ void authprompt_tag_as_auth_required(Client *client)
void authprompt_send_auth_required_message(Client *client)
{
/* Display set::authentication-prompt::message */
send_multinotice(client, cfg.message);
sendnotice_multiline(client, cfg.message);
}
int authprompt_require_sasl(Client *client, char *reason)
@@ -462,7 +462,7 @@ int authprompt_sasl_result(Client *client, int success)
if (!success)
{
send_multinotice(client, cfg.fail_message);
sendnotice_multiline(client, cfg.fail_message);
return 1;
}