summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorPatrik Flykt <patrik.flykt@linux.intel.com>2012-09-14 10:30:50 +0300
committerPatrik Flykt <patrik.flykt@linux.intel.com>2012-09-14 16:32:01 +0300
commite54547749256894bc381652edeea7171285f0400 (patch)
tree50cc38bece0f6b988ca8bbdaf3d9b572060338f3 /client
parent384aedab7b44bd47b6d6b0f43f2791e5bea6c19b (diff)
downloadconnman-e54547749256894bc381652edeea7171285f0400.tar.gz
connman-e54547749256894bc381652edeea7171285f0400.tar.bz2
connman-e54547749256894bc381652edeea7171285f0400.zip
client: Change 'tech' to 'technologies'
Update argument and man page to use 'technologies'
Diffstat (limited to 'client')
-rw-r--r--client/commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/commands.c b/client/commands.c
index 7dca753f..062e7b11 100644
--- a/client/commands.c
+++ b/client/commands.c
@@ -70,7 +70,7 @@ void show_help(void)
" state Shows if the system is online or offline\n"
" services Display list of all services\n"
" --properties <service name> Show properties of service\n"
- " tech Current technology on the system\n"
+ " technologies Current technology on the system\n"
" scan <technology> Scans for new services on the given technology\n"
" connect <service> Connect to a given service\n"
" disconnect <service> Disconnect from service\n"
@@ -287,7 +287,7 @@ int commands_no_options(DBusConnection *connection, char *argv[], int argc)
error = list_properties(connection, "GetProperties", NULL);
if (error != 0)
return error;
- } else if (strcmp(argv[0], "tech") == 0) {
+ } else if (strcmp(argv[0], "technologies") == 0) {
if (argc != 1) {
fprintf(stderr, "Tech cannot accept an argument, "
"see help\n");