diff options
author | Max Kellermann <max@duempel.org> | 2008-09-15 09:23:49 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-15 09:23:49 +0200 |
commit | 85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4 (patch) | |
tree | 1e2316c2d4d9ad1b5c4e918281e2bb2508d030fe /src/conf.c | |
parent | 3911da5c6169877988b061d1de9b475f5789ba69 (diff) | |
download | mpd-85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4.tar.gz mpd-85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4.tar.xz mpd-85fb21cc2bb75cd207d770c6ee7567ddb8e09fd4.zip |
splash: removed the useless splash screen
The code looks strange and spews lots of warnings. Since it does
nothing useful, and wastes the user's precious time, simply remove it.
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/conf.c b/src/conf.c index df0ac5465..049671c24 100644 --- a/src/conf.c +++ b/src/conf.c @@ -560,15 +560,7 @@ read_rc_file(char *filename, options_t *options) } else if( !strcasecmp(CONF_SHOW_SPLASH, name) ) { - options->show_splash = str2bool(value); - -#ifdef DEBUG - D("screen-list:"); - j=0; - while(options->screen_list[j]) - D(" %s", options->screen_list[j++]); - D("\n"); -#endif + /* the splash screen was removed */ } else if( !strcasecmp(CONF_HOST, name)) { |