diff options
author | Max Kellermann <max@duempel.org> | 2009-07-15 18:22:49 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-15 18:22:49 +0200 |
commit | 62f9df98b43724db268c3f63f5fab5a369526bfb (patch) | |
tree | 2427713d5dcf14c30e9904a840003ed8ad603f3e /src/cmdline.c | |
parent | c76f71e8d6bb1a634e64d5290b5d68989b1fb365 (diff) | |
download | mpd-62f9df98b43724db268c3f63f5fab5a369526bfb.tar.gz mpd-62f9df98b43724db268c3f63f5fab5a369526bfb.tar.xz mpd-62f9df98b43724db268c3f63f5fab5a369526bfb.zip |
cmdline: no CamelCase
Renamed type, variables and functions.
Diffstat (limited to 'src/cmdline.c')
-rw-r--r-- | src/cmdline.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cmdline.c b/src/cmdline.c index e0274ef36..5d2f10136 100644 --- a/src/cmdline.c +++ b/src/cmdline.c @@ -77,7 +77,7 @@ static const char *summary = "Music Player Daemon - a daemon for playing music."; #endif -void parseOptions(int argc, char **argv, Options *options) +void parse_cmdline(int argc, char **argv, struct options *options) { GError *error = NULL; GOptionContext *context; @@ -96,7 +96,7 @@ void parseOptions(int argc, char **argv, Options *options) "don't create database, even if it doesn't exist", NULL }, { "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->stdOutput, + { "stdout", 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 }, @@ -107,9 +107,9 @@ void parseOptions(int argc, char **argv, Options *options) options->kill = false; options->daemon = true; - options->stdOutput = false; + options->stderr = false; options->verbose = false; - options->createDB = 0; + options->create_db = 0; context = g_option_context_new("[path/to/mpd.conf]"); g_option_context_add_main_entries(context, entries, NULL); @@ -137,9 +137,9 @@ void parseOptions(int argc, char **argv, Options *options) g_error("Cannot use both --create-db and --no-create-db\n"); if (option_no_create_db) - options->createDB = -1; + options->create_db = -1; else if (option_create_db) - options->createDB = 1; + options->create_db = 1; options->daemon = !option_no_daemon; |