[WiFi] Clarify arduino wifi debug output (#6907)

PSK can concern different ciphers. Make it clear that it belongs to WPA.
This commit is contained in:
Rotzbua 2022-06-24 12:50:40 +02:00 committed by GitHub
parent bd83727cd7
commit 9ab81837a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -250,7 +250,7 @@ static const char * auth_mode_str(int authmode)
return ("WEP");
break;
case WIFI_AUTH_WPA_PSK:
return ("PSK");
return ("WPA_PSK");
break;
case WIFI_AUTH_WPA2_PSK:
return ("WPA2_PSK");