Delete useless comment

This commit is contained in:
Kagamine Haku 2024-10-18 13:44:47 +07:00
parent cef3406691
commit b80b9fbc19

View File

@ -360,15 +360,13 @@ void epay_config_load(struct epay_config *cfg, const wchar_t *filename)
void openssl_patch_config_load(struct openssl_patch_config *cfg, const wchar_t *filename) void openssl_patch_config_load(struct openssl_patch_config *cfg, const wchar_t *filename)
{ {
// Ensure the config structure and filename are valid
assert(cfg != NULL); assert(cfg != NULL);
assert(filename != NULL); assert(filename != NULL);
// Read the "enable" key from the "[openssl]" section of the configuration file
cfg->enable = GetPrivateProfileIntW( cfg->enable = GetPrivateProfileIntW(
L"openssl", // Section name L"openssl",
L"enable", // Key name L"enable",
1, // Default value if the key is not found (disabled by default) 1,
filename // INI file name filename
); );
} }