aboutsummaryrefslogtreecommitdiffstats
path: root/root_commands.c
diff options
context:
space:
mode:
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] );
}