# HG changeset patch # User Eric Warmenhoven # Date 989144091 0 # Node ID 84782d1cb0519bf1cb26e347cd4dc4acf543ccda # Parent b367beee64489fe32c9075f3020cfa42f93fb0f6 [gaim-migrate @ 1828] details committer: Tailor Script diff -r b367beee6448 -r 84782d1cb051 plugins/autorecon.c --- a/plugins/autorecon.c Sun May 06 10:08:40 2001 +0000 +++ b/plugins/autorecon.c Sun May 06 10:14:51 2001 +0000 @@ -12,14 +12,14 @@ } static gboolean do_signon(struct aim_user *u) { - if (!g_list_index(aim_users, u)) + if (g_list_index(aim_users, u) < 0) return FALSE; serv_login(u); return FALSE; } static void reconnect(struct gaim_connection *gc, void *m) { - if (gc->wants_to_die) + if (!gc->wants_to_die) gtk_timeout_add(8000, (GtkFunction)do_signon, gc->user); }