diff options
author | Max Kellermann <max@duempel.org> | 2009-07-15 18:27:32 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-15 18:27:32 +0200 |
commit | 7261739526312f4ce8695fbd75a61a7cc5e3b9d3 (patch) | |
tree | c65a0b2a67cae2a61f2e07cee39b9194500f011f | |
parent | 62f9df98b43724db268c3f63f5fab5a369526bfb (diff) | |
download | mpd-7261739526312f4ce8695fbd75a61a7cc5e3b9d3.tar.gz mpd-7261739526312f4ce8695fbd75a61a7cc5e3b9d3.tar.xz mpd-7261739526312f4ce8695fbd75a61a7cc5e3b9d3.zip |
cmdline: renamed option "--stdout" to "--stderr"
Since version 0.14, MPD has been logging to standard error instead of
standard output. The option name should reflect that. The old option
continues to work, we will remove it in a future MPD release.
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | doc/mpd.1 | 4 | ||||
-rw-r--r-- | src/cmdline.c | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -20,6 +20,7 @@ ver 0.16 (20??/??/??) - added new "status" line with more precise "elapsed time" * log unused/unknown block parameters * save state when stopped +* renamed option "--stdout" to "--stderr" ver 0.15 (2009/06/23) @@ -34,8 +34,8 @@ Do not create database, even if it doesn't exist. .BI --no-daemon Don't detach from console. .TP -.BI --stdout -Print messages to stdout and stderr. +.BI --stderr +Print messages stderr. .TP .BI --verbose Verbose logging. diff --git a/src/cmdline.c b/src/cmdline.c index 5d2f10136..cb796ebab 100644 --- a/src/cmdline.c +++ b/src/cmdline.c @@ -97,6 +97,8 @@ void parse_cmdline(int argc, char **argv, struct options *options) { "no-daemon", 0, 0, G_OPTION_ARG_NONE, &option_no_daemon, "don't detach from console", NULL }, { "stdout", 0, 0, G_OPTION_ARG_NONE, &options->stderr, + NULL, NULL }, + { "stderr", 0, 0, G_OPTION_ARG_NONE, &options->stderr, "print messages to stderr", NULL }, { "verbose", 'v', 0, G_OPTION_ARG_NONE, &options->verbose, "verbose logging", NULL }, |