Skip to content

Commit

Permalink
No longer prints password
Browse files Browse the repository at this point in the history
  • Loading branch information
keithm-xmos authored Mar 28, 2023
1 parent a305fcf commit e68d139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/freertos/iot/src/network_demos/network_setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ int wifi_conn_mgr_event_cb(int event, char *ssid, char *password) {
rtos_printf("Directing WiFi manager to start a soft AP\n");
rtos_printf("\tSSID is %s\n", appconfSOFT_AP_SSID);
if (strlen(appconfSOFT_AP_PASSWORD) > 0) {
rtos_printf("\tPassword is %s\n");
rtos_printf("\tPassword found\n");
} else {
rtos_printf("\tThere is no password\n");
rtos_printf("\tPassword not found\n");
}
strcpy(ssid, appconfSOFT_AP_SSID);
strcpy(password, appconfSOFT_AP_PASSWORD);
Expand Down

0 comments on commit e68d139

Please sign in to comment.