Skip to content

Commit

Permalink
Change "PASS" to "PASSWD" (#343)
Browse files Browse the repository at this point in the history
Co-authored-by: Eiren Rain <Eirenliel@users.noreply.github.com>
  • Loading branch information
ButterscotchV and Eirenliel authored Oct 30, 2024
1 parent 2946a6a commit 85dead2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serial/serialcommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ namespace SerialCommands {
for (int i = 0; i < scanRes; i++) {
logger.info("[WSCAN] %d:\t%02d\t%s\t(%d)\t%s",
i, WiFi.SSID(i).length(), WiFi.SSID(i).c_str(), WiFi.RSSI(i),
((WiFi.encryptionType(i) == 0) ? "OPEN" : "PASS")
((WiFi.encryptionType(i) == 0) ? "OPEN" : "PASSWD")
);
}
WiFi.scanDelete();
Expand Down

0 comments on commit 85dead2

Please sign in to comment.