From: Thadeu Lima de Souza Cascardo Date: Wed, 9 Oct 2013 21:56:38 +0000 (-0300) Subject: sock_init should be called before loading cache X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Ff2fchat.git;a=commitdiff_plain;h=746f894f363405e6ff5dd7cfdc80ccd0c664fd24 sock_init should be called before loading cache --- 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");