From 746f894f363405e6ff5dd7cfdc80ccd0c664fd24 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Wed, 9 Oct 2013 18:56:38 -0300 Subject: [PATCH] sock_init should be called before loading cache --- f2fchat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/f2fchat.c b/f2fchat.c index 854a56e..634133c 100644 --- a/f2fchat.c +++ b/f2fchat.c @@ -31,9 +31,9 @@ int main(int argc, char **argv) struct cache *cache; GMainLoop *loop; g_type_init(); + sock_init(); create_cache(&cache); load_cache(cache, "friends.cache"); - sock_init(); loop = g_main_loop_new(g_main_context_default(), TRUE); g_main_loop_run(loop); store_cache(cache, "friends.cache"); -- 2.20.1