Skip to content

Commit

Permalink
Merge pull request #221 from mrueg/missing-space
Browse files Browse the repository at this point in the history
Missing space
  • Loading branch information
SciLor authored Oct 6, 2024
2 parents 21f3507 + 315f9c3 commit 05af018
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static void option_map_init(uint8_t settingsId)

/* settings for HTTPS server */
OPTION_TREE_DESC("core.server", "Server ports", LEVEL_EXPERT)
OPTION_UNSIGNED("core.server.http_port", &settings->core.http_port, 80, 1, 65535, "HTTP port", "HTTP portfor the webinterface", LEVEL_EXPERT)
OPTION_UNSIGNED("core.server.http_port", &settings->core.http_port, 80, 1, 65535, "HTTP port", "HTTP port for the webinterface", LEVEL_EXPERT)
OPTION_UNSIGNED("core.server.https_web_port", &settings->core.https_web_port, 8443, 1, 65535, "HTTPS Web port", "HTTPS port for the webinterface", LEVEL_EXPERT)
OPTION_UNSIGNED("core.server.https_api_port", &settings->core.https_api_port, 443, 1, 65535, "HTTPS API port", "HTTPS port for the Toniebox API", LEVEL_EXPERT)
OPTION_STRING("core.server.bind_ip", &settings->core.bind_ip, "", "Bind IP", "ip for binding the http ports to", LEVEL_EXPERT)
Expand Down Expand Up @@ -1674,4 +1674,4 @@ bool test_boxine_ca(uint8_t settingsId)
return true;
}
return false;
}
}

0 comments on commit 05af018

Please sign in to comment.