File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ rt_err_t rt_wlan_dev_connect(struct rt_wlan_device *device, struct rt_wlan_info
102102 if ((password_len > RT_WLAN_PASSWORD_MAX_LENGTH ) ||
103103 (info -> ssid .len > RT_WLAN_SSID_MAX_LENGTH ))
104104 {
105- LOG_E ("L:%d password or ssid is to long" , __LINE__ );
105+ LOG_E ("L:%d password or ssid is too long" , __LINE__ );
106106 return - RT_ERROR ;
107107 }
108108 rt_memset (& sta_info , 0 , sizeof (struct rt_sta_info ));
@@ -150,7 +150,7 @@ rt_err_t rt_wlan_dev_ap_start(struct rt_wlan_device *device, struct rt_wlan_info
150150 if ((password_len > RT_WLAN_PASSWORD_MAX_LENGTH ) ||
151151 (info -> ssid .len > RT_WLAN_SSID_MAX_LENGTH ))
152152 {
153- LOG_E ("L:%d password or ssid is to long" , __LINE__ );
153+ LOG_E ("L:%d password or ssid is too long" , __LINE__ );
154154 return - RT_ERROR ;
155155 }
156156
@@ -530,7 +530,7 @@ rt_err_t rt_wlan_dev_scan(struct rt_wlan_device *device, struct rt_wlan_info *in
530530 {
531531 if (info -> ssid .len > RT_WLAN_SSID_MAX_LENGTH )
532532 {
533- LOG_E ("L:%d ssid is to long" , __LINE__ );
533+ LOG_E ("L:%d ssid is too long" , __LINE__ );
534534 return - RT_EINVAL ;
535535 }
536536 rt_memcpy (& scan_info .ssid , & info -> ssid , sizeof (rt_wlan_ssid_t ));
You can’t perform that action at this time.
0 commit comments