diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-03-27 21:39:11 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-03-27 21:39:11 +0200 |
commit | f156ec06fb74d2401ab7147c0977e4fdff20eb52 (patch) | |
tree | 80ffd530da32fef9bb94699593db01a9ec811cc5 /src/mm-context.c | |
parent | 0f9377686d08f4ac360c9f1df3366c91af44209f (diff) |
context: use G_OPTION_ARG_FILENAME when a file path is expected
Diffstat (limited to 'src/mm-context.c')
-rw-r--r-- | src/mm-context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-context.c b/src/mm-context.c index cfa75996..a9bb007a 100644 --- a/src/mm-context.c +++ b/src/mm-context.c @@ -31,7 +31,7 @@ static const GOptionEntry entries[] = { { "version", 'V', 0, G_OPTION_ARG_NONE, &version_flag, "Print version", NULL }, { "debug", 0, 0, G_OPTION_ARG_NONE, &debug, "Run with extended debugging capabilities", NULL }, { "log-level", 0, 0, G_OPTION_ARG_STRING, &log_level, "Log level: one of ERR, WARN, INFO, DEBUG", "[LEVEL]" }, - { "log-file", 0, 0, G_OPTION_ARG_STRING, &log_file, "Path to log file", "[PATH]" }, + { "log-file", 0, 0, G_OPTION_ARG_FILENAME, &log_file, "Path to log file", "[PATH]" }, { "timestamps", 0, 0, G_OPTION_ARG_NONE, &show_ts, "Show timestamps in log output", NULL }, { "relative-timestamps", 0, 0, G_OPTION_ARG_NONE, &rel_ts, "Use relative timestamps (from MM start)", NULL }, { NULL } @@ -79,7 +79,7 @@ static const GOptionEntry test_entries[] = { { "test-session", 0, 0, G_OPTION_ARG_NONE, &test_session, "Run in session DBus", NULL }, { "test-no-auto-scan", 0, 0, G_OPTION_ARG_NONE, &test_no_auto_scan, "Don't auto-scan looking for devices", NULL }, { "test-enable", 0, 0, G_OPTION_ARG_NONE, &test_enable, "Enable the Test interface in the daemon", NULL }, - { "test-plugin-dir", 0, 0, G_OPTION_ARG_STRING, &test_plugin_dir, "Path to look for plugins", "[PATH]" }, + { "test-plugin-dir", 0, 0, G_OPTION_ARG_FILENAME, &test_plugin_dir, "Path to look for plugins", "[PATH]" }, { NULL } }; |