1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 17:23:15 +02:00

Fixed /wallops command (now many words are correctly sent)

This commit is contained in:
Sebastien Helleu
2006-08-10 14:14:19 +00:00
parent 8c2876a77c
commit f6fb874c88
4 changed files with 4 additions and 2 deletions
+1
View File
@@ -4,6 +4,7 @@ WeeChat - Wee Enhanced Environment for Chat
ChangeLog - 2006-08-10
Version 0.2.0 (under dev!):
* fixed /wallops command (now many words are correctly sent)
* fixed command 348 (channel exception list, received by /mode #chan e)
* added missing modes (channel & user), now all modes are allowed (bug #16606)
* added "%m" for completion with self nick (on current server)
+1 -1
View File
@@ -2188,7 +2188,7 @@ irc_cmd_send_wallops (t_irc_server *server, t_irc_channel *channel,
/* make gcc happy */
(void) channel;
server_sendf (server, "WALLOPS %s\r\n", arguments);
server_sendf (server, "WALLOPS :%s\r\n", arguments);
return 0;
}
+1
View File
@@ -4,6 +4,7 @@ WeeChat - Wee Enhanced Environment for Chat
ChangeLog - 2006-08-10
Version 0.2.0 (under dev!):
* fixed /wallops command (now many words are correctly sent)
* fixed command 348 (channel exception list, received by /mode #chan e)
* added missing modes (channel & user), now all modes are allowed (bug #16606)
* added "%m" for completion with self nick (on current server)
+1 -1
View File
@@ -2188,7 +2188,7 @@ irc_cmd_send_wallops (t_irc_server *server, t_irc_channel *channel,
/* make gcc happy */
(void) channel;
server_sendf (server, "WALLOPS %s\r\n", arguments);
server_sendf (server, "WALLOPS :%s\r\n", arguments);
return 0;
}