Revision: 17607
http://svn.sourceforge.net/gaim/?rev=17607&view=rev
Author: thekingant
Date: 2006-10-28 13:05:27 -0700 (Sat, 28 Oct 2006)
Log Message:
-----------
I don't believe this check is needed
Modified Paths:
--------------
trunk/libgaim/connection.c
Modified: trunk/libgaim/connection.c
===================================================================
--- trunk/libgaim/connection.c 2006-10-28 20:04:03 UTC (rev 17606)
+++ trunk/libgaim/connection.c 2006-10-28 20:05:27 UTC (rev 17607)
@@ -31,6 +31,7 @@
#include "log.h"
#include "notify.h"
#include "prefs.h"
+#include "proxy.h"
#include "request.h"
#include "server.h"
#include "signals.h"
@@ -188,13 +189,11 @@
update_keepalive(gc, FALSE);
- if (gc->prpl != NULL)
- {
- prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl);
+ gaim_proxy_connect_cancel_with_handle(gc);
- if (prpl_info->close)
- (prpl_info->close)(gc);
- }
+ prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl);
+ if (prpl_info->close)
+ (prpl_info->close)(gc);
/* Clear out the proto data that was freed in the prpl close method*/
buddies = gaim_find_buddies(account, NULL);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|