changeset 4494:b5a50a6a13b0

[gaim-migrate @ 4769] win32 fix committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Fri, 31 Jan 2003 20:19:08 +0000
parents 61ba567f9c64
children 32487e11a14d
files plugins/autorecon.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/autorecon.c	Fri Jan 31 19:44:20 2003 +0000
+++ b/plugins/autorecon.c	Fri Jan 31 20:19:08 2003 +0000
@@ -11,6 +11,8 @@
 #include "win32dep.h"
 #endif
 
+G_MODULE_IMPORT GSList *gaim_accounts;
+
 #define INITIAL 8000
 #define MAXTIME 1024000
 
@@ -20,9 +22,13 @@
 
 static gboolean do_signon(gpointer data) {
 	struct gaim_account *account = data;
+	debug_printf("do_signon called\n");
+
 	if (g_slist_index(gaim_accounts, account) < 0)
 		return FALSE;
+	debug_printf("calling serv_login\n");
 	serv_login(account);
+	debug_printf("done calling serv_login\n");
 	tim = 0;
 	return FALSE;
 }