Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Dec 1999 00:09:34 +0800
From:      Peter Wemm <peter@netplex.com.au>
To:        asmodai@FreeBSD.org
Cc:        taka@cs.pitt.edu, freebsd-bugs@FreeBSD.org
Subject:   Re: misc/15696: A minor bug in procfs code 
Message-ID:  <19991227160934.41F641CA0@overcee.netplex.com.au>
In-Reply-To: Message from <asmodai@FreeBSD.org>  of "Mon, 27 Dec 1999 07:01:00 PST." <199912271501.HAA11783@freefall.freebsd.org> 

next in thread | previous in thread | raw e-mail | index | archive | help
asmodai@FreeBSD.org wrote:
> Synopsis: A minor bug in procfs code
> 
> State-Changed-From-To: open->closed
> State-Changed-By: asmodai
> State-Changed-When: Mon Dec 27 06:58:40 PST 1999
> State-Changed-Why: 
> The repository as well as the ftp URL in this PR both show that the in
> the PR mentioned `typo' never existed.
> 
> The given `fix' for the middle line has been in the code since 1996,
> not the other way around.

Actually you were confused by a typo in the report.  There really was a typo,
but not the one you were looking at.  The trailing "," should have been a ";".
It's really fixed now. :-)

ppid = p->p_pptr ? p->p_pptr->p_pid : 0,
should be
ppid = p->p_pptr ? p->p_pptr->p_pid : 0;

Cheers,
-Peter




To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19991227160934.41F641CA0>