aboutsummaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2005-11-07 19:39:57 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2005-11-07 19:39:57 +0100
commit576d6d76c6c730eec71394ab204db2b87bca9888 (patch)
treea11ef5ccffc3af2ac56bf75800a4e9f57fcc8bc2 /commands.c
parentfe51bcf0ae238e6fde4400b3dd17ddf99f77ae2a (diff)
Got rid of some debugging code we tried to use to track the 100% CPU bug.
Turned out it was very suitable DoS code. :-)
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/commands.c b/commands.c
index 762cf510..9c1a9aec 100644
--- a/commands.c
+++ b/commands.c
@@ -51,7 +51,6 @@ command_t commands[] = {
{ "nick", 1, cmd_nick },
{ "import_buddies", 1, cmd_import_buddies },
{ "qlist", 0, cmd_qlist },
- { "dump", 0, cmd_dump },
{ NULL }
};
@@ -795,10 +794,3 @@ int cmd_import_buddies( irc_t *irc, char **cmd )
return( 0 );
}
-
-int cmd_dump( irc_t *irc, char **cmd ) {
- write_io_activity();
- irc_usermsg(irc, "Wrote GIO activity log to disk.");
-
- return( 0 );
-}