Fix: update config and environment names

This commit is contained in:
jcorporation 2019-01-31 21:30:43 +00:00
parent a5a3d16b8a
commit e2153ab021
2 changed files with 6 additions and 6 deletions

View File

@ -68,11 +68,11 @@ smartpls = true
syscmds = false syscmds = false
#Elements per page for pagination, max: 400 #Elements per page for pagination, max: 400
max_elements_per_page = 100 maxelementsperpage = 100
#Number of songs to keep in last played list #Number of songs to keep in last played list
last_played_count = 20 lastplayedcount = 20
[theme] [theme]
backgroundcolor: #888 backgroundcolor = #888

View File

@ -129,7 +129,7 @@ static int mympd_inihandler(void *user, const char *section, const char *name, c
free(p_config->browsetaglist); free(p_config->browsetaglist);
p_config->browsetaglist = strdup(value); p_config->browsetaglist = strdup(value);
} }
else if (MATCH("mympd", "max_elements_per_page")) { else if (MATCH("mympd", "maxelementsperpage")) {
p_config->max_elements_per_page = strtol(value, &crap, 10); p_config->max_elements_per_page = strtol(value, &crap, 10);
if (p_config->max_elements_per_page > MAX_ELEMENTS_PER_PAGE) { if (p_config->max_elements_per_page > MAX_ELEMENTS_PER_PAGE) {
printf("Setting max_elements_per_page to maximal value %d", MAX_ELEMENTS_PER_PAGE); printf("Setting max_elements_per_page to maximal value %d", MAX_ELEMENTS_PER_PAGE);
@ -146,7 +146,7 @@ static int mympd_inihandler(void *user, const char *section, const char *name, c
free(p_config->streamurl); free(p_config->streamurl);
p_config->streamurl = strdup(value); p_config->streamurl = strdup(value);
} }
else if (MATCH("mympd", "last_played_count")) { else if (MATCH("mympd", "lastplayedcount")) {
p_config->last_played_count = strtol(value, &crap, 10); p_config->last_played_count = strtol(value, &crap, 10);
} }
else if (MATCH("mympd", "loglevel")) { else if (MATCH("mympd", "loglevel")) {
@ -204,7 +204,7 @@ static void mympd_get_env(struct t_config *config) {
"MYMPD_LOGLEVEL", "MYMPD_USER", "MYMPD_LOCALPLAYER", "MYMPD_COVERIMAGE", "MYMPD_COVERIMAGENAME", "MYMPD_LOGLEVEL", "MYMPD_USER", "MYMPD_LOCALPLAYER", "MYMPD_COVERIMAGE", "MYMPD_COVERIMAGENAME",
"MYMPD_COVERIMAGESIZE", "MYMPD_VARLIBDIR", "MYMPD_MIXRAMP", "MYMPD_STICKERS", "MYMPD_TAGLIST", "MYMPD_COVERIMAGESIZE", "MYMPD_VARLIBDIR", "MYMPD_MIXRAMP", "MYMPD_STICKERS", "MYMPD_TAGLIST",
"MYMPD_SEARCHTAGLIST", "MYMPD_BROWSETAGLIST", "MYMPD_SMARTPLS", "MYMPD_SYSCMDS", "MYMPD_SEARCHTAGLIST", "MYMPD_BROWSETAGLIST", "MYMPD_SMARTPLS", "MYMPD_SYSCMDS",
"MYMPD_MAX_ELEMENTS_PER_PAGE", "MYMPD_LAST_PLAYED_COUNT", "MYMPD_MAXELEMENTSPERPAGE", "MYMPD_LASTPLAYEDCOUNT",
"THEME_BACKGROUNDCOLOR", 0}; "THEME_BACKGROUNDCOLOR", 0};
const char** ptr = env_vars; const char** ptr = env_vars;
while (*ptr != 0) { while (*ptr != 0) {