From 6479260d11c8f24a33cea6d0c79778a6beae1f9d Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 1 Jan 2010 07:03:54 +0000 Subject: Fix build failure in inf-ptrace.c. * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo. --- gdb/ChangeLog | 5 +++++ gdb/ChangeLog-2009 | 5 ----- gdb/inf-ptrace.c | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'gdb') diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ac3afb12cbb..d212062a245 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-01-01 Joel Brobecker + + Fix build failure in inf-ptrace.c. + * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo. + 2010-01-01 Joel Brobecker * top.c (print_gdb_version): Update copyright year. diff --git a/gdb/ChangeLog-2009 b/gdb/ChangeLog-2009 index 753fbb0cc0a..6bee817fbea 100644 --- a/gdb/ChangeLog-2009 +++ b/gdb/ChangeLog-2009 @@ -30,11 +30,6 @@ * breakpoint.c (update_watchpoint): Change b->type to bp_watchpoint before calling hw_watchpoint_used_count. -2009-12-30 Joel Brobecker - - Fix build failure in inf-ptrace.c. - * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo. - 2009-12-30 Joel Brobecker * breakpoint.c (watchpoint_check): Expand the function description. diff --git a/gdb/inf-ptrace.c b/gdb/inf-ptrace.c index a138701d06e..d2df3b15762 100644 --- a/gdb/inf-ptrace.c +++ b/gdb/inf-ptrace.c @@ -67,8 +67,8 @@ inf_ptrace_follow_fork (struct target_ops *ops, int follow_child) child_inf = add_inferior (fpid); child_inf->attach_flag = parent_inf->attach_flag; copy_terminal_info (child_inf, parent_inf); - inf->pspace = parent_inf->pspace; - inf->pspace = parent_inf->aspace; + child_inf->pspace = parent_inf->pspace; + child_inf->aspace = parent_inf->aspace; /* Before detaching from the parent, remove all breakpoints from it. */ -- cgit v1.2.1