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:
@@ -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
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user