From: Marcel Holtmann Date: Wed, 22 Jul 2009 19:02:56 +0000 (+0200) Subject: Fix the state value of Network Manager compatibility support X-Git-Tag: accepted/2.0alpha-wayland/20121110.002834~3399 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=533f25a598455b8e680a2b80aaa4eb5a66b21411;p=profile%2Fivi%2Fconnman.git Fix the state value of Network Manager compatibility support --- 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);