Skip to content

Commit 8258db5

Browse files
authored
Fix error message typo (esp8266#7581)
Sorry, I know it's little. But it eats at me...
1 parent 88be34e commit 8258db5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266WiFi/src/WiFiClientSecureBearSSL.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ int WiFiClientSecure::connect(IPAddress ip, uint16_t port) {
221221
int WiFiClientSecure::connect(const char* name, uint16_t port) {
222222
IPAddress remote_addr;
223223
if (!WiFi.hostByName(name, remote_addr)) {
224-
DEBUG_BSSL("connect: Name loopup failure\n");
224+
DEBUG_BSSL("connect: Name lookup failure\n");
225225
return 0;
226226
}
227227
if (!WiFiClient::connect(remote_addr, port)) {

0 commit comments

Comments
 (0)