This changes a couple of places in gdbserver to use the GNU style for
metasyntactic variables.
gdb/gdbserver/ChangeLog
2018-09-16 Tom Tromey <tom@tromey.com>
* remote-utils.c (remote_open): Use GNU style for metasyntactic
variables.
* gdbreplay.c (gdbreplay_usage): Use GNU style for metasyntactic
variables.
+2018-09-16 Tom Tromey <tom@tromey.com>
+
+ * remote-utils.c (remote_open): Use GNU style for metasyntactic
+ variables.
+ * gdbreplay.c (gdbreplay_usage): Use GNU style for metasyntactic
+ variables.
+
2018-09-05 Tom Tromey <tom@tromey.com>
* configure: Rebuild.
static void
gdbreplay_usage (FILE *stream)
{
- fprintf (stream, "Usage:\tgdbreplay <logfile> <host:port>\n");
+ fprintf (stream, "Usage:\tgdbreplay LOGFILE HOST:PORT\n");
if (REPORT_BUGS_TO[0] && stream == stdout)
fprintf (stream, "Report bugs to \"%s\".\n", REPORT_BUGS_TO);
}
port_str = strchr (name, ':');
#ifdef USE_WIN32API
if (port_str == NULL)
- error ("Only <host>:<port> is supported on this platform.");
+ error ("Only HOST:PORT is supported on this platform.");
#endif
if (strcmp (name, STDIO_CONNECTION_NAME) == 0)