aboutsummaryrefslogtreecommitdiffstats
path: root/irc_commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'irc_commands.c')
-rw-r--r--irc_commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_commands.c b/irc_commands.c
index 2e225702..152df767 100644
--- a/irc_commands.c
+++ b/irc_commands.c
@@ -81,7 +81,7 @@ static int irc_cmd_nick( irc_t *irc, char **cmd )
static int irc_cmd_quit( irc_t *irc, char **cmd )
{
irc_write( irc, "ERROR :%s%s", cmd[1]?"Quit: ":"", cmd[1]?cmd[1]:"Client Quit" );
- g_io_channel_close( irc->io_channel );
+ /* g_io_channel_close( irc->io_channel ); */
return( 0 );
}