Change the syspopup name for network notification popup 76/66476/5
authorSeonah Moon <seonah1.moon@samsung.com>
Tue, 19 Apr 2016 06:17:17 +0000 (15:17 +0900)
committertaesubkim <taesub.kim@samsung.com>
Wed, 20 Apr 2016 00:56:39 +0000 (09:56 +0900)
Change-Id: I2dfdbe84c14a4b007bae022c329a8a99763fe219
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
packaging/net-config.spec
src/utils/util.c
src/wifi-state.c

index d54ffff..b6c9468 100755 (executable)
@@ -1,6 +1,6 @@
 Name:          net-config
 Summary:       TIZEN Network Configuration service
-Version:       1.1.66
+Version:       1.1.67
 Release:       2
 Group:         System/Network
 License:       Apache-2.0
index e339c29..03d5eba 100644 (file)
@@ -878,7 +878,7 @@ gboolean netconfig_send_notification_to_net_popup(const char * noti, const char
                bundle_add(b, "_AP_NAME_", ssid);
        }
 
-       ret = syspopup_launch("net.netpopup", b);
+       ret = syspopup_launch("net-popup", b);
 
        bundle_free(b);
 
@@ -902,7 +902,7 @@ int netconfig_send_message_to_net_popup(const char *title,
        bundle_add(b, "_SYSPOPUP_TYPE_", type);
        bundle_add(b, "_AP_NAME_", ssid);
 
-       ret = syspopup_launch("net.netpopup", b);
+       ret = syspopup_launch("net-popup", b);
 
        bundle_free(b);
 
index 8b9cc33..ad71f3b 100755 (executable)
@@ -61,7 +61,7 @@ static void __netconfig_pop_wifi_connected_poppup(const char *ssid)
        bundle_add(b, "_AP_NAME_", ssid);
 
        DBG("Launch Wi-Fi connected alert network popup");
-       syspopup_launch("net.netpopup", b);
+       syspopup_launch("net-popup", b);
 
        bundle_free(b);
 }