# HG changeset patch # User Herman Bloggs # Date 1044044348 0 # Node ID b5a50a6a13b0aab7d4843259fdfeb124137ceba9 # Parent 61ba567f9c64b9bf310faa154958ccbd591327a4 [gaim-migrate @ 4769] win32 fix committer: Tailor Script diff -r 61ba567f9c64 -r b5a50a6a13b0 plugins/autorecon.c --- 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; }