From: Nishant Chaprana Date: Fri, 9 Mar 2018 04:48:42 +0000 (+0530) Subject: Fix typo mistake Invaild => Invalid X-Git-Tag: submit/tizen/20180412.075158~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5145f09cd37958034b883a1d4d01c40c4b390122;p=platform%2Fcore%2Fapi%2Fwifi-mesh.git Fix typo mistake Invaild => Invalid Change-Id: I1276e1148d30aacd35abbb22652ea7b77aa08c7c Signed-off-by: Nishant Chaprana --- diff --git a/src/wifi-mesh-dbus.c b/src/wifi-mesh-dbus.c index 02573c1..4f96ac9 100644 --- a/src/wifi-mesh-dbus.c +++ b/src/wifi-mesh-dbus.c @@ -188,7 +188,7 @@ int _wifi_mesh_get_scan_result(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -274,7 +274,7 @@ int _wifi_mesh_find_peers(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -501,7 +501,7 @@ static void _mesh_unsubscribe_event(wifi_mesh_h handle) struct mesh_handle *h = handle; if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return; /* LCOV_EXCL_STOP */ } @@ -615,7 +615,7 @@ int _wifi_mesh_enable(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -663,7 +663,7 @@ int _wifi_mesh_disable(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -708,7 +708,7 @@ int _wifi_mesh_scan(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -749,7 +749,7 @@ int _wifi_mesh_specific_scan(wifi_mesh_h handle, const char* ssid, int channel) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -790,7 +790,7 @@ int _wifi_mesh_cancel_scan(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -832,7 +832,7 @@ int _mesh_foreach_found_mesh_network(wifi_mesh_h handle, if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -845,7 +845,7 @@ int _mesh_foreach_found_mesh_network(wifi_mesh_h handle, } if (NULL == cb) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -884,7 +884,7 @@ int _wifi_mesh_foreach_connected_peers(wifi_mesh_h handle, if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -898,7 +898,7 @@ int _wifi_mesh_foreach_connected_peers(wifi_mesh_h handle, if (NULL == cb) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -938,7 +938,7 @@ int _wifi_mesh_enable_mesh(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -979,7 +979,7 @@ int _wifi_mesh_disable_mesh(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1020,7 +1020,7 @@ int _wifi_mesh_is_started(wifi_mesh_h handle, bool* is_started) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1062,7 +1062,7 @@ int _wifi_mesh_is_joined(wifi_mesh_h handle, bool* is_joined) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1106,7 +1106,7 @@ int _mesh_get_joined_mesh_network(wifi_mesh_h handle, wifi_mesh_network_h* _netw if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1120,7 +1120,7 @@ int _mesh_get_joined_mesh_network(wifi_mesh_h handle, wifi_mesh_network_h* _netw if (NULL == _network) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1211,7 +1211,7 @@ int _wifi_mesh_set_gate(wifi_mesh_h handle, bool gate_announce, int hwmp_root_mo if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1252,7 +1252,7 @@ int _wifi_mesh_unset_gate(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1296,7 +1296,7 @@ int _wifi_mesh_set_softap(wifi_mesh_h handle, const char* ssid, if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1339,7 +1339,7 @@ int _wifi_mesh_get_softap(wifi_mesh_h handle, char **ssid, int *channel, if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1391,7 +1391,7 @@ int _wifi_mesh_enable_softap(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1432,7 +1432,7 @@ int _wifi_mesh_disable_softap(wifi_mesh_h handle) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1472,7 +1472,7 @@ int _wifi_mesh_is_softap_started(wifi_mesh_h handle, bool *result) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1511,7 +1511,7 @@ int _mesh_create_network(wifi_mesh_h handle, wifi_mesh_network_h _network) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1553,7 +1553,7 @@ int _mesh_connect_network(wifi_mesh_h handle, wifi_mesh_network_h _network) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1595,7 +1595,7 @@ int _mesh_disconnect_network(wifi_mesh_h handle, wifi_mesh_network_h _network) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1637,7 +1637,7 @@ int _mesh_forget_network(wifi_mesh_h handle, wifi_mesh_network_h _network) if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1689,7 +1689,7 @@ int _wifi_mesh_get_stations_info(wifi_mesh_h handle, if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1849,7 +1849,7 @@ int _wifi_mesh_get_mpath_info(wifi_mesh_h handle, mesh_found_mpath_cb cb, void * if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -1950,7 +1950,7 @@ int _wifi_mesh_get_meshconf_info(wifi_mesh_h handle, if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ } @@ -2044,7 +2044,7 @@ int _wifi_mesh_set_interfaces(wifi_mesh_h handle, const char *mesh, const char * if (NULL == h) { /* LCOV_EXCL_START */ - LOGE("Invaild parameter"); + LOGE("Invalid parameter"); return WIFI_MESH_ERROR_INVALID_PARAMETER; /* LCOV_EXCL_STOP */ }