1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 06:46:38 +02:00

irc: quote argument to NICK

This commit is contained in:
Matthew Martin
2019-02-28 18:55:26 -06:00
parent 6a0e9818a9
commit 77a9322bbf
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -3489,7 +3489,7 @@ irc_send_nick_server (struct t_irc_server *server, const char *nickname)
if (server->is_connected)
{
irc_server_sendf (server, IRC_SERVER_SEND_OUTQ_PRIO_HIGH, NULL,
"NICK %s", nickname);
"NICK :%s", nickname);
}
else
irc_server_set_nick (server, nickname);