Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0857109

Browse filesBrowse files
authored
[backport-v1] Fix softap_config_equal compare auth_mode/cipher (espressif#5332)
backport from v2 to v1 of fix espressif#5121 fixes espressif#5038
1 parent bb2d98a commit 0857109
Copy full SHA for 0857109

File tree

Expand file treeCollapse file tree

1 file changed

+3
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-0
lines changed

‎libraries/WiFi/src/WiFiAP.cpp

Copy file name to clipboardExpand all lines: libraries/WiFi/src/WiFiAP.cpp
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ static bool softap_config_equal(const wifi_config_t& lhs, const wifi_config_t& r
6767
if(lhs.ap.channel != rhs.ap.channel) {
6868
return false;
6969
}
70+
if(lhs.ap.authmode != rhs.ap.authmode) {
71+
return false;
72+
}
7073
if(lhs.ap.ssid_hidden != rhs.ap.ssid_hidden) {
7174
return false;
7275
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.