Fixed wrong output information

to ->too
This commit is contained in:
David Lin 2020-03-04 23:13:45 +08:00 committed by GitHub
parent f9ab9d5868
commit 39538e036b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ rt_err_t rt_wlan_dev_connect(struct rt_wlan_device *device, struct rt_wlan_info
if ((password_len > RT_WLAN_PASSWORD_MAX_LENGTH) || if ((password_len > RT_WLAN_PASSWORD_MAX_LENGTH) ||
(info->ssid.len > RT_WLAN_SSID_MAX_LENGTH)) (info->ssid.len > RT_WLAN_SSID_MAX_LENGTH))
{ {
LOG_E("L:%d password or ssid is to long", __LINE__); LOG_E("L:%d password or ssid is too long", __LINE__);
return -RT_ERROR; return -RT_ERROR;
} }
rt_memset(&sta_info, 0, sizeof(struct rt_sta_info)); rt_memset(&sta_info, 0, sizeof(struct rt_sta_info));
@ -530,7 +530,7 @@ rt_err_t rt_wlan_dev_scan(struct rt_wlan_device *device, struct rt_wlan_info *in
{ {
if (info->ssid.len > RT_WLAN_SSID_MAX_LENGTH) if (info->ssid.len > RT_WLAN_SSID_MAX_LENGTH)
{ {
LOG_E("L:%d ssid is to long", __LINE__); LOG_E("L:%d ssid is too long", __LINE__);
return -RT_EINVAL; return -RT_EINVAL;
} }
rt_memcpy(&scan_info.ssid, &info->ssid, sizeof(rt_wlan_ssid_t)); rt_memcpy(&scan_info.ssid, &info->ssid, sizeof(rt_wlan_ssid_t));