Botch in previous change. Was comparing against "ask" instead of
follow_fork_mode_ask.
This commit is contained in:
parent
53904c9e67
commit
e28d556f6b
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Jun 8 11:41:41 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* infrun.c (follow_inferior_fork): Bad merge from below. Compare
|
||||
strings using follow_fork_mode_ask and not "ask".
|
||||
|
||||
Wed Jun 7 15:13:04 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* command.h (add_set_enum_cmd): Make ``enumlist'' and ``var''
|
||||
|
|
|
@ -466,7 +466,7 @@ follow_inferior_fork (int parent_pid, int child_pid, int has_forked,
|
|||
const char *follow_mode = follow_fork_mode_string;
|
||||
|
||||
/* Or, did the user not know, and want us to ask? */
|
||||
if (follow_fork_mode_string == "ask")
|
||||
if (follow_fork_mode_string == follow_fork_mode_ask)
|
||||
{
|
||||
internal_error ("follow_inferior_fork: \"ask\" mode not implemented");
|
||||
/* follow_mode = follow_fork_mode_...; */
|
||||
|
|
Loading…
Reference in a new issue