diff options
author | Bob Manson <manson@cygnus> | 1997-03-06 03:36:05 +0000 |
---|---|---|
committer | Bob Manson <manson@cygnus> | 1997-03-06 03:36:05 +0000 |
commit | db38473ab8f77b5e315cdf871d884ec864938193 (patch) | |
tree | 85241331b580d69dd1d5ee4b31037d99c805831a /gdb/remote-mips.c | |
parent | ae7872effe77efb483185aeb4753e3094981baa4 (diff) | |
download | gdb-db38473ab8f77b5e315cdf871d884ec864938193.zip gdb-db38473ab8f77b5e315cdf871d884ec864938193.tar.gz gdb-db38473ab8f77b5e315cdf871d884ec864938193.tar.bz2 |
* remote-mips.c (mips_exit_debug): Some IDT boards don't
send the full exit string.
Fixes a bug when trying to load to our mips IDT boards.
Diffstat (limited to 'gdb/remote-mips.c')
-rw-r--r-- | gdb/remote-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c index 26ed258..bd2affa 100644 --- a/gdb/remote-mips.c +++ b/gdb/remote-mips.c @@ -1312,7 +1312,7 @@ mips_exit_debug () mips_request ('x', (unsigned int) 0, (unsigned int) 0, &err, mips_receive_wait, NULL); - if (mips_monitor == MON_IDT && !mips_expect ("Exiting remote debug mode")) + if (mips_monitor == MON_IDT && !mips_expect ("Exiting remote debug")) return -1; if (mips_monitor == MON_DDB) |