syncing between computers..
[systembsd.git] / src / main.c
index 42a47790327192dcff2246781c09f9560b914ee2..c19b489c31633dea4c4a60cf041e8b8a23445971 100644 (file)
@@ -2,7 +2,11 @@
 #include "interfaces/hostnamed/hostnamed.c"
 
 int main() {
-       hostnamed_init();
+       GMainLoop *mloop = NULL;
        
+       mloop = g_main_loop_new(NULL, FALSE);
+       hostnamed_init();
+       g_main_loop_run(mloop);
+
        return 0;
 }