diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-01-18 23:17:59 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-01-18 23:17:59 +0100 |
commit | 4c266f2d79212e4e0ff4b9b33088685a2ec452e4 (patch) | |
tree | 57312efb83e7f4eb1351215dec285d56dc7ebf99 /irc_commands.c | |
parent | 1ea13be2cf335a471f85ea54d610fb91b7d14564 (diff) | |
parent | c1826c6f72d1fe85e1c5decf5207601dac2c23e7 (diff) |
Merged (and adapted) changes from main tree.
Diffstat (limited to 'irc_commands.c')
-rw-r--r-- | irc_commands.c | 2 |
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 ); } |