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:
@@ -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)
|
||||
|
||||
|
||||
+64
-51
File diff suppressed because it is too large
Load Diff
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user