aboutsummaryrefslogtreecommitdiffstats
path: root/ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'ipc.c')
-rw-r--r--ipc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipc.c b/ipc.c
index dfde24bd..fcede7ec 100644
--- a/ipc.c
+++ b/ipc.c
@@ -124,7 +124,8 @@ static int ipc_child_cmd_kill( irc_t *irc, char **cmd )
return 1; /* It's not for us. */
irc_write( irc, ":%s!%s@%s KILL %s :%s", irc->mynick, irc->mynick, irc->myhost, irc->nick, cmd[2] );
- g_io_channel_close( irc->io_channel );
+ irc_abort( irc );
+ /* g_io_channel_close( irc->io_channel ); */
return 0;
}