aboutsummaryrefslogtreecommitdiffstats
path: root/root_commands.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-04-15 18:03:08 -0700
committerWilmer van der Gaast <wilmer@gaast.net>2007-04-15 18:03:08 -0700
commit84b045d409f1e8da6d8bf379c6fef7236dcd9bcd (patch)
tree765681f302614273ac61e1560955a7307252097e /root_commands.c
parentc2fb38096ea4e75a680e57e103d4a4986aa84c75 (diff)
s/imc/imcb/ for callback functions. Moved things aroundin nogaim.h a
little bit, grouping things by category instead of original Gaim 0.58 filename.
Diffstat (limited to 'root_commands.c')
-rw-r--r--root_commands.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/root_commands.c b/root_commands.c
index 0b3d6844..acbf579f 100644
--- a/root_commands.c
+++ b/root_commands.c
@@ -633,8 +633,8 @@ static void cmd_block( irc_t *irc, char **cmd )
}
else
{
- bim_rem_allow( ic, cmd[2] );
- bim_add_block( ic, cmd[2] );
+ imc_rem_allow( ic, cmd[2] );
+ imc_add_block( ic, cmd[2] );
irc_usermsg( irc, "Buddy `%s' moved from your allow- to your block-list", cmd[2] );
}
}
@@ -692,8 +692,8 @@ static void cmd_allow( irc_t *irc, char **cmd )
}
else
{
- bim_rem_block( ic, cmd[2] );
- bim_add_allow( ic, cmd[2] );
+ imc_rem_block( ic, cmd[2] );
+ imc_add_allow( ic, cmd[2] );
irc_usermsg( irc, "Buddy `%s' moved from your block- to your allow-list", cmd[2] );
}