1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-27 21:16:50 +03:00

Fix softAP issue introduced in 40da463 (#1054)

This commit is contained in:
Ivan Grokhotkov 2015-11-25 18:29:34 +03:00
parent fce970365a
commit 6be74ec95e

View File

@ -360,7 +360,7 @@ void ESP8266WiFiClass::softAP(const char* ssid, const char* passphrase, int chan
struct softap_config conf_current;
wifi_softap_get_config(&conf_current);
if (!softap_config_equal(conf, conf_current))
if (softap_config_equal(conf, conf_current))
{
DEBUGV("softap config unchanged");
return;