aboutsummaryrefslogtreecommitdiffstats
path: root/root_commands.c
diff options
context:
space:
mode:
authorSven Moritz Hallberg <sm@khjk.org>2008-02-15 10:27:26 +0100
committerSven Moritz Hallberg <sm@khjk.org>2008-02-15 10:27:26 +0100
commit522a00f1b1163cedf15a86329c0097601eb7940b (patch)
treeb2209ee32d58fa3ef3cc3bd0cddddab18345b2d8 /root_commands.c
parent6c91e6e59a1216100d851636d2824ce49ad7ce30 (diff)
remove thread-based keygen
replace it with a process-based stub
Diffstat (limited to 'root_commands.c')
-rw-r--r--root_commands.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/root_commands.c b/root_commands.c
index 04c62fea..9b492048 100644
--- a/root_commands.c
+++ b/root_commands.c
@@ -85,27 +85,19 @@ void root_command( irc_t *irc, char *cmd[] )
if( !cmd[0] )
return;
- if(!g_static_rec_mutex_trylock(&irc->otr_mutex)) {
- irc_usermsg(irc, "keygen in progress, bitlbee comatose - please wait");
- return;
- }
-
for( i = 0; commands[i].command; i++ )
if( g_strcasecmp( commands[i].command, cmd[0] ) == 0 )
{
if( !cmd[commands[i].required_parameters] )
{
irc_usermsg( irc, "Not enough parameters given (need %d)", commands[i].required_parameters );
- g_static_rec_mutex_unlock(&irc->otr_mutex);
return;
}
commands[i].execute( irc, cmd );
- g_static_rec_mutex_unlock(&irc->otr_mutex);
return;
}
irc_usermsg( irc, "Unknown command: %s. Please use \x02help commands\x02 to get a list of available commands.", cmd[0] );
- g_static_rec_mutex_unlock(&irc->otr_mutex);
}
static void cmd_help( irc_t *irc, char **cmd )