Skip to content

Commit

Permalink
Reformat + unify line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
jchv committed Sep 14, 2024
1 parent 027f59d commit aa84807
Show file tree
Hide file tree
Showing 7 changed files with 736 additions and 725 deletions.
10 changes: 5 additions & 5 deletions src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ void ReadJsonPatchAddressMap(LPSTR *json, LPCSTR key) {
void ReadJsonBypassSelfSignedCertificate(LPSTR *json, LPCSTR key) {
LPCSTR value = JsonReadString(json);

Config.bBypassSelfSignedCertificate = FALSE;
Config.bBypassSelfSignedCertificate = FALSE;

if (value == NULL || value == "")
return;
if (value == NULL || value == "")
return;

if (_stricmp(value, "TRUE") == 0)
Config.bBypassSelfSignedCertificate = TRUE;
if (_stricmp(value, "TRUE") == 0)
Config.bBypassSelfSignedCertificate = TRUE;
}

void ReadJsonConfigMap(LPSTR *json, LPCSTR key) {
Expand Down
Loading

0 comments on commit aa84807

Please sign in to comment.