Fix setup of udev context before loading any plugins
[platform/upstream/connman.git] / src / main.c
index ac7e7f8..ede37a0 100644 (file)
@@ -40,6 +40,8 @@ static GMainLoop *main_loop = NULL;
 
 static void sig_term(int sig)
 {
+       connman_info("Terminating");
+
        g_main_loop_quit(main_loop);
 }
 
@@ -50,7 +52,7 @@ static void sig_debug(int sig)
 
 static void disconnect_callback(DBusConnection *conn, void *user_data)
 {
-       DBG("D-Bus disconnect");
+       connman_error("D-Bus disconnect");
 
        g_main_loop_quit(main_loop);
 }
@@ -95,7 +97,7 @@ const char *connman_option_get_string(const char *key)
 {
        if (g_strcmp0(key, "wifi") == 0) {
                if (option_wifi == NULL)
-                       return "wext,nl80211";
+                       return "wext";
                else
                        return option_wifi;
        }
@@ -249,9 +251,5 @@ selftest:
 
        g_main_loop_unref(main_loop);
 
-       rmdir(STORAGEDIR);
-
-       rmdir(STATEDIR);
-
        return 0;
 }