Fix wrong init value 69/188769/1 accepted/tizen/unified/20180911.055400 submit/tizen/20180910.104903
authorSeonah Moon <seonah1.moon@samsung.com>
Mon, 10 Sep 2018 07:00:42 +0000 (16:00 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Mon, 10 Sep 2018 07:02:13 +0000 (16:02 +0900)
Change-Id: If02c6be3a27796e4f709e9e5c44684b012406aab

packaging/mobileap-agent.spec
src/mobileap_wifi.c

index e6909f4..6464846 100644 (file)
@@ -1,6 +1,6 @@
 Name: mobileap-agent
 Summary: Mobile AP daemon for setting tethering environments
-Version: 1.0.129
+Version: 1.0.130
 Release: 1
 Group: System/Network
 License: Apache-2.0
index a03c22c..4ca2b8e 100755 (executable)
@@ -57,7 +57,7 @@ static guint wifi_recovery_timeout_id = 0;
 static gboolean prev_wifi_on = FALSE;
 static gboolean is_softap = FALSE;
 static softap_settings_t wifi_settings = {"", "", "", "", 0, 0, 0, 0, 0, 0, 0};
-static softap_settings_t wifi_ap_settings = {"", "", "", "", 0, 0, 0, 0, MOBILE_AP_MAX_WIFI_STA, 0, 0};
+static softap_settings_t wifi_ap_settings = {"", "", "", "", 0, 0, 0, MOBILE_AP_MAX_WIFI_STA, 0, 0, 0};
 static softap_settings_t obj_softap_settings = {"", "", "", "", 0, 0, 0, 0, 0, 0, 0};
 
 static wifi_manager_h wifi_manager = NULL;
@@ -1565,7 +1565,7 @@ gboolean softap_reload_settings(Softap *obj,
                GDBusMethodInvocation *context, GVariant *settings)
 {
        mobile_ap_error_code_e ret = MOBILE_AP_ERROR_NONE;
-       softap_settings_t reload_settings = {"", "", "", "", 0, 0, 0, 0, MOBILE_AP_MAX_WIFI_STA, 0, 0};
+       softap_settings_t reload_settings = {"", "", "", "", 0, 0, 0, MOBILE_AP_MAX_WIFI_STA, 0, 0, 0};
 
        DBG("+");