aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-08-24 17:12:15 +0200
committerMax Kellermann <max@duempel.org>2009-08-24 17:12:15 +0200
commit4231ec51c319ee43e06e9ab291696d8f1a546564 (patch)
tree5f1b3414bdd8ab2767219d90475951d226032c29
parentf401c1059c78358b701dbee22ca78035c6e652eb (diff)
downloadmpd-4231ec51c319ee43e06e9ab291696d8f1a546564.tar.gz
mpd-4231ec51c319ee43e06e9ab291696d8f1a546564.tar.xz
mpd-4231ec51c319ee43e06e9ab291696d8f1a546564.zip
conf: removed the deprecated "error_file" option
This option was deprecated by the 0.15 release. This patch makes this option invalid.
-rw-r--r--NEWS1
-rw-r--r--src/conf.c1
-rw-r--r--src/conf.h1
3 files changed, 1 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index e5fd491d0..a113dd5b8 100644
--- a/NEWS
+++ b/NEWS
@@ -22,6 +22,7 @@ ver 0.16 (20??/??/??)
* commands:
- added new "status" line with more precise "elapsed time"
* log unused/unknown block parameters
+* removed the deprecated "error_file" option
* save state when stopped
* renamed option "--stdout" to "--stderr"
* obey $(sysconfdir) for default mpd.conf location
diff --git a/src/conf.c b/src/conf.c
index ce80100f0..48c58b1ac 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -53,7 +53,6 @@ static struct config_entry config_entries[] = {
{ .name = CONF_DB_FILE, false, false },
{ .name = CONF_STICKER_FILE, false, false },
{ .name = CONF_LOG_FILE, false, false },
- { .name = CONF_ERROR_FILE, false, false },
{ .name = CONF_PID_FILE, false, false },
{ .name = CONF_STATE_FILE, false, false },
{ .name = CONF_USER, false, false },
diff --git a/src/conf.h b/src/conf.h
index 4eb9db63c..a153b7157 100644
--- a/src/conf.h
+++ b/src/conf.h
@@ -30,7 +30,6 @@
#define CONF_DB_FILE "db_file"
#define CONF_STICKER_FILE "sticker_file"
#define CONF_LOG_FILE "log_file"
-#define CONF_ERROR_FILE "error_file"
#define CONF_PID_FILE "pid_file"
#define CONF_STATE_FILE "state_file"
#define CONF_USER "user"