syncing between computers..
[systembsd.git] / src / main.c
index a51b30d84f76fd2b5689ceee737a0d2e52a8a8ca..c19b489c31633dea4c4a60cf041e8b8a23445971 100644 (file)
@@ -1,8 +1,12 @@
 #include <gio/gio.h>
-#include "modules/hostnamed/hostnamed.c"
+#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;
 }