Add socket and message.
[cascardo/f2fchat.git] / f2fchat.c
index 00c774f..854a56e 100644 (file)
--- a/f2fchat.c
+++ b/f2fchat.c
@@ -30,10 +30,11 @@ int main(int argc, char **argv)
 {
        struct cache *cache;
        GMainLoop *loop;
+       g_type_init();
        create_cache(&cache);
        load_cache(cache, "friends.cache");
+       sock_init();
        loop = g_main_loop_new(g_main_context_default(), TRUE);
-       g_idle_add(quit, loop);
        g_main_loop_run(loop);
        store_cache(cache, "friends.cache");
        destroy_cache(cache);