From 8e4c7b3e255fc2961aa8db48ba0ca99a6b156f4f Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Fri, 11 Mar 1994 18:18:47 +0000 Subject: [PATCH] * main.c (main): When printing warning about bad baud rate, don't use warning(); it relies on current_target which isn't set up yet. --- gdb/ChangeLog | 3 +++ gdb/main.c | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 83d6cb3f7f9..021ca473000 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ Fri Mar 11 08:08:50 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + * main.c (main): When printing warning about bad baud rate, don't + use warning(); it relies on current_target which isn't set up yet. + * breakpoint.c (_initialize_breakpoint): Update docstring for tbreak to match what the code actually does. Don't mention tbreak in docstrings for "enable once" or "enable breakpoints once". diff --git a/gdb/main.c b/gdb/main.c index 54418efea45..edefa30bb5d 100644 --- a/gdb/main.c +++ b/gdb/main.c @@ -690,7 +690,13 @@ main (argc, argv) i = strtol (optarg, &p, 0); if (i == 0 && p == optarg) - warning ("Could not set baud rate to `%s'.\n", optarg); + + /* Don't use *_filtered or warning() (which relies on + current_target) until after initialize_all_files(). */ + + fprintf_unfiltered + (gdb_stderr, + "warning: could not set baud rate to `%s'.\n", optarg); else baud_rate = i; } -- 2.30.2