From owner-freebsd-current Sat Jan 11 23: 7:53 2003 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D693037B405 for ; Sat, 11 Jan 2003 23:07:51 -0800 (PST) Received: from h00609772adf0.ne.client2.attbi.com (h00609772adf0.ne.client2.attbi.com [24.61.43.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BFDD43F43 for ; Sat, 11 Jan 2003 23:07:51 -0800 (PST) (envelope-from rodrigc@attbi.com) Received: from h00609772adf0.ne.client2.attbi.com (localhost [127.0.0.1]) by h00609772adf0.ne.client2.attbi.com (8.12.6/8.12.6) with ESMTP id h0C77oTc031477 for ; Sun, 12 Jan 2003 02:07:51 -0500 (EST) (envelope-from rodrigc@h00609772adf0.ne.client2.attbi.com) Received: (from rodrigc@localhost) by h00609772adf0.ne.client2.attbi.com (8.12.6/8.12.6/Submit) id h0C77o3X031476 for freebsd-current@freebsd.org; Sun, 12 Jan 2003 02:07:50 -0500 (EST) Date: Sun, 12 Jan 2003 02:07:50 -0500 From: Craig Rodrigues To: freebsd-current@freebsd.org Subject: [PATCH] Fix man pages with iovec Message-ID: <20030112070750.GA31466@attbi.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="CE+1k2dSO48ffgeK" Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --CE+1k2dSO48ffgeK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, This patch fixes the read(2) and write(2) man pages to accurately reflect the iovec structure defined in and . -- Craig Rodrigues http://home.attbi.com/~rodrigc rodrigc@attbi.com --CE+1k2dSO48ffgeK Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="iovec.diff" Index: read.2 =================================================================== RCS file: /home/ncvs/src/lib/libc/sys/read.2,v retrieving revision 1.18 diff -u -r1.18 read.2 --- read.2 2002/12/19 09:40:25 1.18 +++ read.2 2003/01/12 07:05:27 @@ -85,7 +85,7 @@ .Pp .Bd -literal -offset indent -compact struct iovec { - char *iov_base; /* Base address. */ + void *iov_base; /* Base address. */ size_t iov_len; /* Length. */ }; .Ed Index: write.2 =================================================================== RCS file: /home/ncvs/src/lib/libc/sys/write.2,v retrieving revision 1.23 diff -u -r1.23 write.2 --- write.2 2002/12/19 09:40:25 1.23 +++ write.2 2003/01/12 07:05:28 @@ -85,7 +85,7 @@ .Pp .Bd -literal -offset indent -compact struct iovec { - char *iov_base; /* Base address. */ + void *iov_base; /* Base address. */ size_t iov_len; /* Length. */ }; .Ed --CE+1k2dSO48ffgeK-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message