1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 16:23:14 +02:00

irc: do not display "*" when received as nick in command 900

This commit is contained in:
Sébastien Helleu
2021-10-17 20:24:18 +02:00
parent ba5b744397
commit cde0d5f7a5
2 changed files with 30 additions and 11 deletions
+28 -11
View File
@@ -6823,27 +6823,44 @@ IRC_PROTOCOL_CALLBACK(734)
*
* Command looks like:
* 900 mynick nick!user@host mynick :You are now logged in as mynick
* 900 * * mynick :You are now logged in as mynick
*/
IRC_PROTOCOL_CALLBACK(900)
{
char *str_params;
const char *pos_nick_host;
IRC_PROTOCOL_MIN_PARAMS(4);
pos_nick_host = (strcmp (params[1], "*") != 0) ? params[1] : NULL;
str_params = irc_protocol_string_params (params, 3, num_params - 1);
weechat_printf_date_tags (
irc_msgbuffer_get_target_buffer (server, params[1], command, NULL, NULL),
date,
irc_protocol_tags (command, "irc_numeric", NULL, NULL),
"%s%s %s(%s%s%s)",
weechat_prefix ("network"),
str_params,
IRC_COLOR_CHAT_DELIMITERS,
IRC_COLOR_CHAT_HOST,
params[1],
IRC_COLOR_CHAT_DELIMITERS);
if (pos_nick_host)
{
weechat_printf_date_tags (
irc_msgbuffer_get_target_buffer (server, NULL, command, NULL, NULL),
date,
irc_protocol_tags (command, "irc_numeric", NULL, NULL),
"%s%s %s(%s%s%s)",
weechat_prefix ("network"),
str_params,
IRC_COLOR_CHAT_DELIMITERS,
IRC_COLOR_CHAT_HOST,
pos_nick_host,
IRC_COLOR_CHAT_DELIMITERS);
}
else
{
weechat_printf_date_tags (
irc_msgbuffer_get_target_buffer (server, NULL, command, NULL, NULL),
date,
irc_protocol_tags (command, "irc_numeric", NULL, NULL),
"%s%s",
weechat_prefix ("network"),
str_params);
}
irc_server_free_sasl_data (server);
@@ -4014,6 +4014,8 @@ TEST(IrcProtocolWithServer, 900)
RECV(":server 900 alice alice!user@host alice "
":You are now logged in as mynick");
CHECK_SRV("-- You are now logged in as mynick (alice!user@host)");
RECV(":server 900 * * alice :You are now logged in as mynick");
CHECK_SRV("-- You are now logged in as mynick");
}
/*