From d6c5869f500e76a23480ab50b4b48e980e73f01c Mon Sep 17 00:00:00 2001 From: Luis Machado Date: Thu, 13 Oct 2011 13:15:16 +0000 Subject: 2011-10-13 Luis Machado * remote.c (remote_save_trace_data): Invert comparison. --- gdb/remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/remote.c') diff --git a/gdb/remote.c b/gdb/remote.c index 32e68f3..d9cc97c 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -10274,7 +10274,7 @@ remote_save_trace_data (const char *filename) *p++ = '\0'; putpkt (rs->buf); reply = remote_get_noisy_reply (&target_buf, &target_buf_size); - if (*reply != '\0') + if (*reply == '\0') error (_("Target does not support this command.")); if (strcmp (reply, "OK") != 0) error (_("Bogus reply from target: %s"), reply); -- cgit v1.1