Skip to content

Commit

Permalink
Fix softAP issue introduced in 40da463 (esp8266#1054)
Browse files Browse the repository at this point in the history
  • Loading branch information
igrr committed Nov 25, 2015
1 parent fce9703 commit 6be74ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/ESP8266WiFi/src/ESP8266WiFi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6be74ec

Please sign in to comment.