1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00

Fix error message typo (#7581)

Sorry, I know it's little.  But it eats at me...
This commit is contained in:
9bryan 2020-09-07 10:46:13 -07:00 committed by GitHub
parent 88be34e2dc
commit 8258db53da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -221,7 +221,7 @@ int WiFiClientSecure::connect(IPAddress ip, uint16_t port) {
int WiFiClientSecure::connect(const char* name, uint16_t port) {
IPAddress remote_addr;
if (!WiFi.hostByName(name, remote_addr)) {
DEBUG_BSSL("connect: Name loopup failure\n");
DEBUG_BSSL("connect: Name lookup failure\n");
return 0;
}
if (!WiFiClient::connect(remote_addr, port)) {