Skip to content

Commit

Permalink
fix W600/W800
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxineMuster committed Nov 29, 2024
1 parent 2126e7a commit 0c5cec9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/httpserver/http_fns.c
Original file line number Diff line number Diff line change
Expand Up @@ -1415,6 +1415,7 @@ int http_fn_cfg_wifi_set(http_request_t* request) {
if (http_getArg(request->url, "pass2", tmpA, sizeof(tmpA))) {
bChanged |= CFG_SetWiFiPass2(tmpA);
}
#if ALLOW_SSID2
if (http_getArg(request->url, "startSSID", tmpA, sizeof(tmpA))) {
int start_SSID = atoi(tmpA);
addLogAdv(LOG_DEBUG, LOG_FEATURE_GENERAL, "start_SSID with value %i", start_SSID);
Expand Down Expand Up @@ -1442,7 +1443,7 @@ int http_fn_cfg_wifi_set(http_request_t* request) {
break;
}
}

#endif
#if ALLOW_WEB_PASSWORD
if (http_getArg(request->url, "web_admin_password_enabled", tmpA, sizeof(tmpA))) {
int web_password_enabled = atoi(tmpA);
Expand Down

0 comments on commit 0c5cec9

Please sign in to comment.