1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 09:45:42 +02:00

irc: case-insensitive comparison on incoming CTCP command, force upper case on CTCP replies (closes #1439)

This commit is contained in:
Sébastien Helleu
2020-01-11 11:02:41 +01:00
parent 4f42f407c1
commit 4f9c4fecd3
3 changed files with 68 additions and 54 deletions
+1
View File
@@ -28,6 +28,7 @@ New features::
Bug fixes::
* core: fix evaluation of condition with nested "if" (issue #1434)
* irc: case-insensitive comparison on incoming CTCP command, force upper case on CTCP replies (issue #1439)
* irc: fix memory leak when the channel topic is changed
* xfer: send signal "xfer_ended" after the received file has been renamed (issue #1438)
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -37,11 +37,11 @@ extern void irc_ctcp_display_reply_from_nick (struct t_irc_server *server,
const char *command,
const char *nick,
const char *address,
char *arguments);
const char *arguments);
extern void irc_ctcp_recv (struct t_irc_server *server, time_t date,
const char *command, struct t_irc_channel *channel,
const char *address, const char *nick,
const char *remote_nick, char *arguments,
char *message);
const char *remote_nick, const char *arguments,
const char *message);
#endif /* WEECHAT_PLUGIN_IRC_CTCP_H */