diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-07-27 00:06:02 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-07-27 00:06:02 +0000 |
commit | 40e57cf227f777e0332833c31c8e1e06199256d1 (patch) | |
tree | 0173c918f06a009df208d77462d2b697aaf2d134 /gdb | |
parent | ee5bb91ef144afdfbe0ef828f1511974ec36211f (diff) | |
download | gdb-40e57cf227f777e0332833c31c8e1e06199256d1.zip gdb-40e57cf227f777e0332833c31c8e1e06199256d1.tar.gz gdb-40e57cf227f777e0332833c31c8e1e06199256d1.tar.bz2 |
* remote.c (remote_protocol_features): Correct qPart to qXfer.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/remote.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 759fa20..f48a17f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2006-07-26 Daniel Jacobowitz <dan@codesourcery.com> + + * remote.c (remote_protocol_features): Correct qPart to qXfer. + 2006-07-25 Daniel Jacobowitz <dan@codesourcery.com> * eval.c (evaluate_subexp_for_address): Don't incorrectly discard diff --git a/gdb/remote.c b/gdb/remote.c index 7b4f55b..adafdc7 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -2176,7 +2176,7 @@ remote_packet_size (const struct protocol_feature *feature, static struct protocol_feature remote_protocol_features[] = { { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 }, - { "qPart:auxv:read", PACKET_DISABLE, remote_supported_packet, + { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet, PACKET_qXfer_auxv } }; |