Use getBoolConfigParam for save_absolute_paths_in_playlist

git-svn-id: https://svn.musicpd.org/mpd/trunk@4418 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman 2006-07-21 17:11:45 +00:00
parent b892028b96
commit ac7ef037b5

View File

@ -166,20 +166,8 @@ void initPlaylist(void)
}
}
param = getConfigParam(CONF_SAVE_ABSOLUTE_PATHS);
if (param) {
if (0 == strcmp("yes", param->value)) {
playlist_saveAbsolutePaths = 1;
} else if (0 == strcmp("no", param->value)) {
playlist_saveAbsolutePaths = 0;
} else {
ERROR("%s \"%s\" is not yes or no, line %i"
CONF_SAVE_ABSOLUTE_PATHS,
param->value, param->line);
exit(EXIT_FAILURE);
}
}
playlist_saveAbsolutePaths = getBoolConfigParam(CONF_SAVE_ABSOLUTE_PATHS);
playlist_saveAbsolutePaths = playlist_saveAbsolutePaths < 0 ? 0 : playlist_saveAbsolutePaths;
playlist.songs = malloc(sizeof(Song *) * playlist_max_length);
playlist.songMod = malloc(sizeof(mpd_uint32) * playlist_max_length);