summaryrefslogtreecommitdiffstats
path: root/sync/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sync/main.c')
-rw-r--r--sync/main.c19
1 files changed, 2 insertions, 17 deletions
diff --git a/sync/main.c b/sync/main.c
index 1a04bd21..37827375 100644
--- a/sync/main.c
+++ b/sync/main.c
@@ -30,31 +30,18 @@
#include <unistd.h>
#include <stdlib.h>
+#include <glib.h>
+
#include <opensync/opensync.h>
#include <osengine/engine.h>
-#include <dbus/dbus-glib.h>
-
-static DBusGConnection *conn;
-
int main(int argc, char *argv[])
{
GMainLoop *mainloop;
- GError *error = NULL;
OSyncEnv *env;
- g_type_init();
-
mainloop = g_main_loop_new(NULL, FALSE);
- conn = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error);
- if (error != NULL) {
- g_printerr("Connecting to system bus failed: %s\n",
- error->message);
- g_error_free(error);
- exit(EXIT_FAILURE);
- }
-
env = osync_env_new();
osync_env_initialize(env, NULL);
@@ -65,7 +52,5 @@ int main(int argc, char *argv[])
osync_env_free(env);
- dbus_g_connection_unref(conn);
-
return 0;
}