aboutsummaryrefslogtreecommitdiffstats
path: root/irc_commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'irc_commands.c')
-rw-r--r--irc_commands.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/irc_commands.c b/irc_commands.c
index 19855075..4b2f6b28 100644
--- a/irc_commands.c
+++ b/irc_commands.c
@@ -146,6 +146,9 @@ static gboolean irc_sasl_check_pass(irc_t *irc, char *user, char *pass)
/* set the nick here so we have it for the following numeric */
irc->user->nick = g_strdup(user);
}
+ irc_send_num(irc, 900, "%s!%s@%s %s :You are now logged in as %s",
+ irc->user->nick, irc->user->user, irc->user->host,
+ irc->user->nick, irc->user->nick);
irc_send_num(irc, 903, ":Password accepted");
return TRUE;