summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp
diff options
context:
space:
mode:
authorOleksiy Vyalov <ovyalov@google.com>2015-10-21 19:34:26 +0000
committerOleksiy Vyalov <ovyalov@google.com>2015-10-21 19:34:26 +0000
commit9fe526c2e741351387d572093d65da2018d6b88a (patch)
tree56799a886db0c714fcc3b08fc20ae9f5a8920819 /lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp
parent526b5f9cd4794794d278db42c56f074404aa9a5e (diff)
downloadbcm5719-llvm-9fe526c2e741351387d572093d65da2018d6b88a.tar.gz
bcm5719-llvm-9fe526c2e741351387d572093d65da2018d6b88a.zip
Add domain socket support to gdb-remote protocol and lldb-server.
http://reviews.llvm.org/D13881 llvm-svn: 250933
Diffstat (limited to 'lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp')
-rw-r--r--lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp b/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp
index 403e641952c..0706c9bafa8 100644
--- a/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp
+++ b/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp
@@ -196,8 +196,7 @@ PlatformAndroid::ConnectRemote(Args& args)
return Error("URL is null.");
if (!UriParser::Parse(url, scheme, host, port, path))
return Error("Invalid URL: %s", url);
- if (scheme == "adb")
- m_device_id = host;
+ m_device_id = host;
auto error = PlatformLinux::ConnectRemote(args);
if (error.Success())
OpenPOWER on IntegriCloud