From: <the...@us...> - 2006-06-19 06:27:22
|
Revision: 16286 Author: thekingant Date: 2006-06-18 23:27:18 -0700 (Sun, 18 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16286&view=rev Log Message: ----------- When the /quit command is used on IRC, we disconnect the account. This avoids having Gaim think the server kicked us offline. And it avoids Gaim auto-reconnecting. Modified Paths: -------------- trunk/src/protocols/irc/cmds.c Modified: trunk/src/protocols/irc/cmds.c =================================================================== --- trunk/src/protocols/irc/cmds.c 2006-06-19 06:23:20 UTC (rev 16285) +++ trunk/src/protocols/irc/cmds.c 2006-06-19 06:27:18 UTC (rev 16286) @@ -372,6 +372,8 @@ g_free(buf); irc->quitting = TRUE; + + gaim_account_set_status(irc->account, "offline", TRUE, NULL); } return 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |