﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
3971	Sysklogd sed should use int, not int*	Bryan Kadzban	lfs-book@…	"Sysklogd build instructions (in chapter 6) replace ""union wait"" with ""int*"" for the type of the ""status"" variable.

But then two lines below, the code does:

wait3(&status, WNOHANG, (struct rusage *) NULL)

which ends up passing the wait3 call an int!**.  I don't think it matters a ton, because the value stored in status is never looked at, but it's still weird.  I think the sed should be:

{{{
sed -i 's/union wait/int/' syslogd.c
}}}

instead of:

{{{
sed -i 's/union wait/int*/' syslogd.c
}}}"	defect	closed	normal	7.10	Book	SVN	normal	fixed		
