From 9c9a29ceea6734175f9f7693ce86b3ba633f4f7b Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 15 Oct 2010 22:17:46 -0700 Subject: Don't initialize the twitter_connections list to NULL in twitter_init(). This fixes a weird bug where Twitter updates often stop after a while when running in daemon mode with multiple users connected. --- protocols/twitter/twitter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols/twitter/twitter.h') diff --git a/protocols/twitter/twitter.h b/protocols/twitter/twitter.h index 0acb3b4d..98f16835 100644 --- a/protocols/twitter/twitter.h +++ b/protocols/twitter/twitter.h @@ -68,7 +68,7 @@ struct twitter_user_data * make sure the connection is still alive in callbacks before we do anything * else. */ -GSList *twitter_connections; +extern GSList *twitter_connections; void twitter_login_finish( struct im_connection *ic ); -- cgit v1.2.3