diff options
author | Marius Halden <marius.h@lden.org> | 2018-04-19 10:23:08 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2018-04-19 10:23:08 +0200 |
commit | db02ac8971379f9fee2f3a618bb08b8076d1a83d (patch) | |
tree | 0e7d46bad6162509300aa73ae6d77e571a5b26d0 /irc_commands.c | |
parent | 6dc54671e368d03ed447d0fbd2d662af6c36b7fd (diff) | |
parent | 246b98bbdf221448fd7a638fea04373ed1612de5 (diff) |
Merge branch 'master' into patched-master
Diffstat (limited to 'irc_commands.c')
-rw-r--r-- | irc_commands.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/irc_commands.c b/irc_commands.c index f45f94e2..0bfac9ea 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; |