mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-15 00:02:49 +03:00
Typo fix in ESP8266WiFiAP.cpp (#6134)
This commit is contained in:
committed by
Earle F. Philhower, III
parent
0bd36bf02b
commit
147b5fbb98
@ -107,7 +107,7 @@ bool ESP8266WiFiAPClass::softAP(const char* ssid, const char* passphrase, int ch
|
|||||||
|
|
||||||
if(passphrase && strlen(passphrase) > 0 && (strlen(passphrase) > 63 || strlen(passphrase) < 8)) {
|
if(passphrase && strlen(passphrase) > 0 && (strlen(passphrase) > 63 || strlen(passphrase) < 8)) {
|
||||||
// fail passphrase to long or short!
|
// fail passphrase to long or short!
|
||||||
DEBUG_WIFI("[AP] fail passphrase to long or short!\n");
|
DEBUG_WIFI("[AP] fail passphrase too long or short!\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user