From 533f25a598455b8e680a2b80aaa4eb5a66b21411 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 22 Jul 2009 21:02:56 +0200 Subject: [PATCH] Fix the state value of Network Manager compatibility support --- src/manager.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/manager.c b/src/manager.c index 99a0724..113a907 100644 --- a/src/manager.c +++ b/src/manager.c @@ -608,7 +608,10 @@ static DBusMessage *nm_state(DBusConnection *conn, if (reply == NULL) return NULL; - state = NM_STATE_DISCONNECTED; + if (__connman_element_count(NULL, CONNMAN_ELEMENT_TYPE_CONNECTION) > 0) + state = NM_STATE_CONNECTED; + else + state = NM_STATE_DISCONNECTED; dbus_message_append_args(reply, DBUS_TYPE_UINT32, &state, DBUS_TYPE_INVALID); -- 2.7.4