summaryrefslogtreecommitdiffstats
path: root/options/parse_configfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'options/parse_configfile.c')
-rw-r--r--options/parse_configfile.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/options/parse_configfile.c b/options/parse_configfile.c
index 96b607d554..627c466948 100644
--- a/options/parse_configfile.c
+++ b/options/parse_configfile.c
@@ -127,16 +127,7 @@ int m_config_parse(m_config_t *config, const char *location, bstr data,
goto error;
}
- int res;
- if (bstr_equals0(option, "profile-desc")) {
- m_profile_set_desc(profile, value);
- res = 0;
- } else if (bstr_equals0(option, "profile-cond")) {
- m_profile_set_cond(profile, value);
- res = 0;
- } else {
- res = m_config_set_profile_option(config, profile, option, value);
- }
+ int res = m_config_set_profile_option(config, profile, option, value);
if (res < 0) {
MP_ERR(config, "%s setting option %.*s='%.*s' failed.\n",
loc, BSTR_P(option), BSTR_P(value));