1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +02:00

Fix bug in IRC parser when no argument is received after command, no callback was called, and message was silently ignored (bug #30640)

This commit is contained in:
Sebastien Helleu
2010-08-03 17:59:12 +02:00
parent 36d1aac9bd
commit b7dfda9d4d
2 changed files with 8 additions and 1 deletions
+3 -1
View File
@@ -1,7 +1,7 @@
WeeChat ChangeLog
=================
Sébastien Helleu <flashcode@flashtux.org>
v0.3.3-dev, 2010-07-28
v0.3.3-dev, 2010-08-03
Version 0.3.3 (under dev!)
@@ -24,6 +24,8 @@ Version 0.3.3 (under dev!)
(bug #30296)
* api: add function "string_expand_home", fix bug with replacement of home in
paths
* irc: fix bug in parser when no argument is received after command, no
callback was called, and message was silently ignored (bug #30640)
* irc: add new option irc.look.nick_color_stop_chars
* irc: fix import of certificates created by openssl >= 1.0.0 (bug #30316)
* irc: fix display of local SSL certificate when it is sent to server
+5
View File
@@ -1315,6 +1315,11 @@ irc_server_parse_message (const char *message, char **nick, char **host,
}
}
}
else
{
if (command)
*command = strdup (pos);
}
}
}