1
0
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:
Jean Lescut-Muller
2019-05-23 16:55:46 +02:00
committed by Earle F. Philhower, III
parent 0bd36bf02b
commit 147b5fbb98

View File

@ -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)) {
// 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;
}