Modified to WIFI_MANAGER_ERROR 23/215323/1 accepted/tizen_5.5_unified_mobile_hotfix tizen_5.5_mobile_hotfix accepted/tizen/5.5/unified/20191031.030256 accepted/tizen/5.5/unified/mobile/hotfix/20201027.064930 accepted/tizen/unified/20191008.001331 submit/tizen/20191007.071428 submit/tizen_5.5/20191031.000002 submit/tizen_5.5_mobile_hotfix/20201026.185102 tizen_5.5.m2_release
authorhyunuk.tak <hyunuk.tak@samsung.com>
Mon, 7 Oct 2019 05:14:35 +0000 (14:14 +0900)
committerhyunuk.tak <hyunuk.tak@samsung.com>
Mon, 7 Oct 2019 05:15:19 +0000 (14:15 +0900)
Change-Id: I86df25393f66315649439fb952a4d3a6e911eb56
Signed-off-by: hyunuk.tak <hyunuk.tak@samsung.com>
include/wifi-manager.h
src/wifi_tdls.c

index fe12d7f..6fe85c5 100755 (executable)
@@ -3129,8 +3129,8 @@ int wifi_manager_ap_get_eap_passphrase(wifi_manager_ap_h ap, char **user_name, b
  * @return 0 on success, otherwise negative error value
  * @retval #WIFI_MANAGER_ERROR_NONE                 Successful
  * @retval #WIFI_MANAGER_ERROR_INVALID_PARAMETER    Invalid parameter
- * @retval #WIFI_ERROR_INVALID_OPERATION            Invalid operation
- * @retval #WIFI_ERROR_NOT_SUPPORTED                Not supported
+ * @retval #WIFI_MANAGER_ERROR_INVALID_OPERATION            Invalid operation
+ * @retval #WIFI_MANAGER_ERROR_NOT_SUPPORTED                Not supported
  */
 int wifi_manager_ap_set_eap_anonymous_identity(wifi_manager_ap_h ap, const char *anonymous_identity);
 
@@ -3143,9 +3143,9 @@ int wifi_manager_ap_set_eap_anonymous_identity(wifi_manager_ap_h ap, const char
  * @return 0 on success, otherwise negative error value
  * @retval #WIFI_MANAGER_ERROR_NONE                 Successful
  * @retval #WIFI_MANAGER_ERROR_INVALID_PARAMETER    Invalid parameter
- * @retval #WIFI_ERROR_OUT_OF_MEMORY                Out of memory
- * @retval #WIFI_ERROR_INVALID_OPERATION            Invalid operation
- * @retval #WIFI_ERROR_NOT_SUPPORTED                Not supported
+ * @retval #WIFI_MANAGER_ERROR_OUT_OF_MEMORY                Out of memory
+ * @retval #WIFI_MANAGER_ERROR_INVALID_OPERATION            Invalid operation
+ * @retval #WIFI_MANAGER_ERROR_NOT_SUPPORTED                Not supported
  */
 int wifi_manager_ap_get_eap_anonymous_identity(wifi_manager_ap_h ap, char **anonymous_identity);
 
index b806dfb..74a415c 100755 (executable)
@@ -137,7 +137,7 @@ EXPORT_API int wifi_manager_tdls_connect(wifi_manager_h wifi, const char* peer_m
        rv = net_wifi_tdls_connect(peer_mac_addr);
 
        if (rv != NET_ERR_NONE) {
-               WIFI_LOG(WIFI_ERROR, "[App<--TizenMW] WIFI_ERROR_OPERATION_FAILED\n");
+               WIFI_LOG(WIFI_ERROR, "[App<--TizenMW] WIFI_MANAGER_ERROR_OPERATION_FAILED\n");
                __NETWORK_CAPI_FUNC_EXIT__;
                return WIFI_MANAGER_ERROR_OPERATION_FAILED;
        }