From: Marcel Holtmann Date: Mon, 25 Jan 2010 06:20:29 +0000 (+0100) Subject: Use the technology type for an unqiue object path X-Git-Tag: 0.49~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59902b6c3b4a66796f18aeda6a6b6556d824a6b0;p=platform%2Fupstream%2Fconnman.git Use the technology type for an unqiue object path --- diff --git a/src/technology.c b/src/technology.c index 33fbc75..d0a0cd2 100644 --- a/src/technology.c +++ b/src/technology.c @@ -171,8 +171,8 @@ static struct connman_technology *technology_find(enum connman_service_type type static struct connman_technology *technology_get(enum connman_service_type type) { - static unsigned int counter = 0; struct connman_technology *technology; + const char *str; DBG("type %d", type); @@ -182,6 +182,10 @@ static struct connman_technology *technology_get(enum connman_service_type type) goto done; } + str = __connman_service_type2string(type); + if (str == NULL) + return NULL; + technology = g_try_new0(struct connman_technology, 1); if (technology == NULL) return NULL; @@ -189,8 +193,8 @@ static struct connman_technology *technology_get(enum connman_service_type type) technology->refcount = 1; technology->type = type; - technology->path = g_strdup_printf("%s/technology%d", - CONNMAN_PATH, counter++); + technology->path = g_strdup_printf("%s/technology/%s", + CONNMAN_PATH, str); if (g_dbus_register_interface(connection, technology->path, CONNMAN_TECHNOLOGY_INTERFACE,