diff options
author | bohu <bohu@google.com> | 2018-10-24 10:38:33 -0700 |
---|---|---|
committer | bohu <bohu@google.com> | 2018-10-24 10:38:33 -0700 |
commit | ea0c3cbc1843a452a6d9ff3cc6a98a623ead25f1 (patch) | |
tree | df8b9ed0c1a5b32177bcc66717069551c99dfb4e /adb/client/commandline.cpp | |
parent | ac305c82d6c98bcb96257d9f099c0d7049dd62ce (diff) | |
download | system_core-ea0c3cbc1843a452a6d9ff3cc6a98a623ead25f1.tar.gz system_core-ea0c3cbc1843a452a6d9ff3cc6a98a623ead25f1.tar.bz2 system_core-ea0c3cbc1843a452a6d9ff3cc6a98a623ead25f1.zip |
adb: correct tcpip help message
'adb tcpip <mode>' is meant to affect adbd, not
the host adb server.
BUG: 111434128
Change-Id: I78c958bfbede60b20fb7e0f2444e5b21ecb90f7a
Diffstat (limited to 'adb/client/commandline.cpp')
-rw-r--r-- | adb/client/commandline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/adb/client/commandline.cpp b/adb/client/commandline.cpp index 31248526f..b5bed2881 100644 --- a/adb/client/commandline.cpp +++ b/adb/client/commandline.cpp @@ -204,8 +204,8 @@ static void help() { " sideload OTAPACKAGE sideload the given full OTA package\n" " root restart adbd with root permissions\n" " unroot restart adbd without root permissions\n" - " usb restart adb server listening on USB\n" - " tcpip PORT restart adb server listening on TCP on PORT\n" + " usb restart adbd listening on USB\n" + " tcpip PORT restart adbd listening on TCP on PORT\n" "\n" "internal debugging:\n" " start-server ensure that there is a server running\n" |