diff options
author | Timo Sirainen <cras@irssi.org> | 2000-04-27 11:44:55 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-04-27 11:44:55 +0000 |
commit | 642a4525d44e60049b42287ddb42ea1c7817140d (patch) | |
tree | f72392da69fa283fe64422705a483cc399305b60 /src/fe-common/irc/fe-irc-commands.c | |
parent | a94e6e735c4683f8bc6f7e142b399e1379239bc7 (diff) | |
download | irssi-642a4525d44e60049b42287ddb42ea1c7817140d.zip |
updated aliases, added #irssi/efnet
/BANSTAT -> /BAN
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@185 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/fe-irc-commands.c')
-rw-r--r-- | src/fe-common/irc/fe-irc-commands.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/fe-common/irc/fe-irc-commands.c b/src/fe-common/irc/fe-irc-commands.c index 4e57aa45..bc6097cf 100644 --- a/src/fe-common/irc/fe-irc-commands.c +++ b/src/fe-common/irc/fe-irc-commands.c @@ -323,14 +323,18 @@ static void cmd_nctcp(const char *data, IRC_SERVER_REC *server) g_free(params); } -static void cmd_banstat(const char *data, IRC_SERVER_REC *server, WI_IRC_REC *item) +static void cmd_ban(const char *data, IRC_SERVER_REC *server, WI_IRC_REC *item) { CHANNEL_REC *cur_channel, *channel; GSList *tmp; g_return_if_fail(data != NULL); + if (*data == '\0') + return; /* setting ban - don't handle here */ + if (server == NULL || !server->connected) cmd_return_error(CMDERR_NOT_CONNECTED); + /* display bans */ cur_channel = irc_item_channel(item); if (cur_channel == NULL) cmd_return_error(CMDERR_NOT_JOINED); @@ -377,6 +381,8 @@ static void cmd_banstat(const char *data, IRC_SERVER_REC *server, WI_IRC_REC *it printformat(server, channel->name, MSGLEVEL_CRAP, IRCTXT_EBANLIST, channel->name, rec->ban, rec->setby, (gint) (time(NULL)-rec->time)); } + + signal_stop(); } static void cmd_invitelist(const char *data, IRC_SERVER_REC *server, WI_IRC_REC *item) @@ -510,7 +516,7 @@ void fe_irc_commands_init(void) command_bind("action", NULL, (SIGNAL_FUNC) cmd_action); command_bind("ctcp", NULL, (SIGNAL_FUNC) cmd_ctcp); command_bind("nctcp", NULL, (SIGNAL_FUNC) cmd_nctcp); - command_bind("banstat", NULL, (SIGNAL_FUNC) cmd_banstat); + command_bind("ban", NULL, (SIGNAL_FUNC) cmd_ban); command_bind("invitelist", NULL, (SIGNAL_FUNC) cmd_invitelist); command_bind("join", NULL, (SIGNAL_FUNC) cmd_join); command_bind("channel", NULL, (SIGNAL_FUNC) cmd_channel); @@ -531,7 +537,7 @@ void fe_irc_commands_deinit(void) command_unbind("action", (SIGNAL_FUNC) cmd_action); command_unbind("ctcp", (SIGNAL_FUNC) cmd_ctcp); command_unbind("nctcp", (SIGNAL_FUNC) cmd_nctcp); - command_unbind("banstat", (SIGNAL_FUNC) cmd_banstat); + command_unbind("ban", (SIGNAL_FUNC) cmd_ban); command_unbind("invitelist", (SIGNAL_FUNC) cmd_invitelist); command_unbind("join", (SIGNAL_FUNC) cmd_join); command_unbind("channel", (SIGNAL_FUNC) cmd_channel); |