Bug Fix: modified the return value for feature check function 31/88831/2 accepted/tizen/common/20160921.162556 accepted/tizen/ivi/20160922.041850 accepted/tizen/mobile/20160922.045935 accepted/tizen/tv/20160922.041753 accepted/tizen/wearable/20160922.041826 submit/tizen/20160921.025733 submit/tizen/20160921.055232
authorSeonah Moon <seonah1.moon@samsung.com>
Wed, 21 Sep 2016 01:02:23 +0000 (10:02 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Wed, 21 Sep 2016 02:09:25 +0000 (11:09 +0900)
Change-Id: Ib32fa643ee13328281780f9b92f40df871e4d2c3
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
packaging/capi-network-wifi.spec
src/libnetwork.c

index 7d58af6..23bdd57 100755 (executable)
@@ -1,6 +1,6 @@
 Name:          capi-network-wifi
 Summary:       Network Wi-Fi library in TIZEN C API
-Version:       1.0.79
+Version:       1.0.80
 Release:       1
 Group:         System/Network
 License:       Apache-2.0
index d3c1b44..512e6ed 100755 (executable)
@@ -1381,7 +1381,7 @@ bool __libnet_check_feature_supported(const char *key, wifi_supported_feature_e
                if (system_info_get_platform_bool(key, &wifi_feature_supported[feature]) < 0) {
                        WIFI_LOG(WIFI_ERROR, "Error - Feature getting from System Info"); //LCOV_EXCL_LINE
                        set_last_result(WIFI_ERROR_OPERATION_FAILED); //LCOV_EXCL_LINE
-                       return WIFI_ERROR_OPERATION_FAILED; //LCOV_EXCL_LINE
+                       return false; //LCOV_EXCL_LINE
                }
                wifi_is_feature_checked[feature] = true;
        }