mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-02 14:22:55 +03:00
Fix error message typo (#7581)
Sorry, I know it's little. But it eats at me...
This commit is contained in:
@ -221,7 +221,7 @@ int WiFiClientSecure::connect(IPAddress ip, uint16_t port) {
|
|||||||
int WiFiClientSecure::connect(const char* name, uint16_t port) {
|
int WiFiClientSecure::connect(const char* name, uint16_t port) {
|
||||||
IPAddress remote_addr;
|
IPAddress remote_addr;
|
||||||
if (!WiFi.hostByName(name, remote_addr)) {
|
if (!WiFi.hostByName(name, remote_addr)) {
|
||||||
DEBUG_BSSL("connect: Name loopup failure\n");
|
DEBUG_BSSL("connect: Name lookup failure\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (!WiFiClient::connect(remote_addr, port)) {
|
if (!WiFiClient::connect(remote_addr, port)) {
|
||||||
|
Reference in New Issue
Block a user