diff options
author | Eric Wong <normalperson@yhbt.net> | 2007-09-05 23:59:33 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2007-09-05 23:59:33 +0000 |
commit | 4a2122eaf4bffdf7ebb012fe6348602d8e54ced0 (patch) | |
tree | ae1e3307e08d3e36e5e7a7e50960f2eae8234670 /src/inputPlugins | |
parent | ac58dce7df97a97b8e2d71a76b5fa8805653959a (diff) | |
download | mpd-4a2122eaf4bffdf7ebb012fe6348602d8e54ced0.tar.gz mpd-4a2122eaf4bffdf7ebb012fe6348602d8e54ced0.tar.xz mpd-4a2122eaf4bffdf7ebb012fe6348602d8e54ced0.zip |
conf: improved boolean config parameter handling from -ke
the force flag will issue FATAL() if an invalid value is
specified
git-svn-id: https://svn.musicpd.org/mpd/trunk@6857 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugins')
-rw-r--r-- | src/inputPlugins/mp3_plugin.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 43783070d..dc9e04e5f 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -120,11 +120,10 @@ static signed long audio_linear_dither(unsigned int bits, mad_fixed_t sample, static int mp3_plugin_init(void) { - gaplessPlaybackEnabled = getBoolConfigParam(CONF_GAPLESS_MP3_PLAYBACK); - if (gaplessPlaybackEnabled == -1) + gaplessPlaybackEnabled = getBoolConfigParam(CONF_GAPLESS_MP3_PLAYBACK, + 1); + if (gaplessPlaybackEnabled == CONF_BOOL_UNSET) gaplessPlaybackEnabled = DEFAULT_GAPLESS_MP3_PLAYBACK; - else if (gaplessPlaybackEnabled < 0) - exit(EXIT_FAILURE); return 1; } |