From owner-cvs-lib Wed Mar 12 07:26:20 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA19153 for cvs-lib-outgoing; Wed, 12 Mar 1997 07:26:20 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA19135; Wed, 12 Mar 1997 07:26:12 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id CAA01593; Thu, 13 Mar 1997 02:25:23 +1100 Date: Thu, 13 Mar 1997 02:25:23 +1100 From: Bruce Evans Message-Id: <199703121525.CAA01593@godzilla.zeta.org.au> To: cvs-all@freefall.freebsd.org, CVS-committers@freefall.freebsd.org, cvs-lib@freefall.freebsd.org, mpp@freefall.freebsd.org Subject: Re: cvs commit: src/lib/libc/sys execve.2 intro.2 sigaltstack.2 Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Modified: lib/libc/sys execve.2 intro.2 sigaltstack.2 > Log: > Cleanup some of the Lite2 merge. Most of it is mdoc cleanup, > but in one case the Lite2 changes were flat out wrong and > caused the man page to disagree with a header file. Erm, the disagreement was because the header file (sys/signal.h) hasn't been fully merged from Lite2 yet. I have fixed it locally and was going to commit the change tonight :-). The man page still had the type wrong in Lite2: header man page FreeBSD-was: char *ss_sp; caddr_t ss_base; Lite2: char *ss_base; caddr_t ss_base; "right": void *ss_base; void *ss_base; The pointer is a user address, so caddr_t is bogus. I haven't changed it to void * yet, so I'll delay the commit until it can be done right. Bruce