summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeonah Moon <seonah1.moon@samsung.com>2016-09-21 10:02:23 +0900
committerSeonah Moon <seonah1.moon@samsung.com>2016-09-21 11:09:25 +0900
commite2236f0cdf3082b8c13fdf585c9f56a7593ace0b (patch)
tree7279be9abcce409afe39e87af5edf5a651505075
parent148ac2b081af64297df11d9dc8595369c90da9e8 (diff)
downloadwifi-e2236f0cdf3082b8c13fdf585c9f56a7593ace0b.tar.gz
wifi-e2236f0cdf3082b8c13fdf585c9f56a7593ace0b.tar.bz2
wifi-e2236f0cdf3082b8c13fdf585c9f56a7593ace0b.zip
Change-Id: Ib32fa643ee13328281780f9b92f40df871e4d2c3 Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
-rwxr-xr-xpackaging/capi-network-wifi.spec2
-rwxr-xr-xsrc/libnetwork.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/packaging/capi-network-wifi.spec b/packaging/capi-network-wifi.spec
index 7d58af6..23bdd57 100755
--- a/packaging/capi-network-wifi.spec
+++ b/packaging/capi-network-wifi.spec
@@ -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
diff --git a/src/libnetwork.c b/src/libnetwork.c
index d3c1b44..512e6ed 100755
--- a/src/libnetwork.c
+++ b/src/libnetwork.c
@@ -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;
}