summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2010-02-05 05:26:32 +0100
committerRichard Hughes <richard@hughsie.com>2010-02-06 13:42:57 +0000
commit3ea96602e631fe7f7839a3e1f6d55493f9608ab9 (patch)
tree5b922057a82d4007bebcec8f76c37b747c727467 /tools
parent41917bfc73e5dda1d289d7c7d62398ca82d7ae8c (diff)
downloadupower-3ea96602e631fe7f7839a3e1f6d55493f9608ab9.tar.gz
Update help and g_option_context_new to upower
Diffstat (limited to 'tools')
-rw-r--r--tools/up-tool.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/up-tool.c b/tools/up-tool.c
index e2ecd99..a691744 100644
--- a/tools/up-tool.c
+++ b/tools/up-tool.c
@@ -273,7 +273,7 @@ main (int argc, char **argv)
g_type_init ();
- context = g_option_context_new ("DeviceKit-power tool");
+ context = g_option_context_new ("UPower tool");
g_option_context_add_main_entries (context, entries, NULL);
g_option_context_add_group (context, egg_debug_get_option_group ());
g_option_context_parse (context, &argc, &argv, NULL);
@@ -287,8 +287,8 @@ main (int argc, char **argv)
g_object_get (client,
"daemon-version", &daemon_version,
NULL);
- g_print ("DeviceKit-power client version %s\n"
- "DeviceKit-power daemon version %s\n",
+ g_print ("UPower client version %s\n"
+ "UPower daemon version %s\n",
PACKAGE_VERSION, daemon_version);
g_free (daemon_version);
retval = 0;