gdb/gdbserver/ChangeLog:
* server.c (process_point_options): If a conditional expression
is found, only print a message if remote_debug is nonzero.
+2012-03-08 Joel Brobecker <brobecker@adacore.com>
+
+ * server.c (process_point_options): If a conditional expression
+ is found, only print a message if remote_debug is nonzero.
+
2012-03-08 Luis Machado <lgustavo@codesourcery.com>
* ax-gdb.c (gen_fetch): Fail gracefully and use error instead
{
case 'X':
/* Conditional expression. */
- fprintf (stderr, "Found breakpoint condition.\n");
+ if (remote_debug)
+ fprintf (stderr, "Found breakpoint condition.\n");
add_breakpoint_condition (point_addr, &dataptr);
break;
default: