Skip to content

Commit

Permalink
Fix error message typo (#7581)
Browse files Browse the repository at this point in the history
Sorry, I know it's little.  But it eats at me...
  • Loading branch information
9bryan authored Sep 7, 2020
1 parent 88be34e commit 8258db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/ESP8266WiFi/src/WiFiClientSecureBearSSL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 8258db5

Please sign in to comment.