Skip to content

Commit 223dd95

Browse files
committedMay 29, 2015
Add '+' sign at the end of echo message for debugserver
Summary: -ammend to r238538 -Fix test failure of TestGdbRemoteAuxvSupport.py and TestLldbGdbServer.py on MacOSX Test Plan: ./dotest -p TestGdbRemoteAuxvSupport.py ./dotest -p TestLldbGdbServer.py Reviewers: chaoren, clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D10133 llvm-svn: 238595
1 parent 9d2b7f9 commit 223dd95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lldb/tools/debugserver/source/RNBRemote.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3097,7 +3097,7 @@ RNBRemote::HandlePacket_qSupported (const char *p)
30973097
{
30983098
uint32_t max_packet_size = 128 * 1024; // 128KBytes is a reasonable max packet size--debugger can always use less
30993099
char buf[64];
3100-
snprintf (buf, sizeof(buf), "qXfer:features:read+;PacketSize=%x;qEcho", max_packet_size);
3100+
snprintf (buf, sizeof(buf), "qXfer:features:read+;PacketSize=%x;qEcho+", max_packet_size);
31013101
return SendPacket (buf);
31023102
}
31033103

0 commit comments

Comments
 (0)
Please sign in to comment.