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

irc: add a missing colon before the password in PASS message (closes #602)

This commit is contained in:
Sébastien Helleu
2015-11-24 07:44:21 +01:00
parent c7b781bc54
commit 9e9dd27bb3
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -3328,7 +3328,7 @@ irc_server_login (struct t_irc_server *server)
server, IRC_SERVER_OPTION_CAPABILITIES);
if (password && password[0])
irc_server_sendf (server, 0, NULL, "PASS %s", password);
irc_server_sendf (server, 0, NULL, "PASS :%s", password);
if (!server->nick)
{