diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-06-11 20:35:35 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-06-11 20:35:35 +0000 |
commit | f63f30e2cc5681e794b64e7452eb8758d400cdee (patch) | |
tree | 46230b9a93a1bb660d1c438b6b0a7341c96b884d /gdb/remote-mips.c | |
parent | 49b12db0ce321fa9b0bffd79a68ec2337ccba258 (diff) | |
download | gdb-f63f30e2cc5681e794b64e7452eb8758d400cdee.zip gdb-f63f30e2cc5681e794b64e7452eb8758d400cdee.tar.gz gdb-f63f30e2cc5681e794b64e7452eb8758d400cdee.tar.bz2 |
* remote-mips.c (mips_send_packet): Don't print garbage character
in debugging info.
(mips_request): Don't check that remote pid is 0, because
sometimes it isn't.
Diffstat (limited to 'gdb/remote-mips.c')
-rw-r--r-- | gdb/remote-mips.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c index 2dc6dd2..3a668ad 100644 --- a/gdb/remote-mips.c +++ b/gdb/remote-mips.c @@ -574,7 +574,7 @@ mips_send_packet (s, get_ack) hdr[HDR_LENGTH] = '\0'; trlr[TRLR_LENGTH] = '\0'; printf_filtered ("Got ack %d \"%s%s\"\n", - HDR_GET_SEQ (hdr), hdr, trlr); + HDR_GET_SEQ (hdr), hdr + 1, trlr); } /* If this ack is for the current packet, we're done. */ @@ -805,7 +805,6 @@ mips_request (cmd, addr, data, perr) if (sscanf (buff, "0x%x %c 0x%x 0x%x", &rpid, &rcmd, &rerrflg, &rresponse) != 4 - || rpid != 0 || (cmd != '\0' && rcmd != cmd)) error ("Bad response from remote board"); |