From owner-freebsd-current Tue Aug 1 22:29:58 2000 Delivered-To: freebsd-current@freebsd.org Received: from wint.itfs.nsk.su (wint.itfs.nsk.su [212.20.32.43]) by hub.freebsd.org (Postfix) with ESMTP id AB15D37BFFC; Tue, 1 Aug 2000 22:29:42 -0700 (PDT) (envelope-from nnd@wint.itfs.nsk.su) Received: (from nnd@localhost) by wint.itfs.nsk.su (8.9.3/8.9.3) id MAA83737; Wed, 2 Aug 2000 12:29:40 +0700 (NOVST) (envelope-from nnd) Date: Wed, 2 Aug 2000 12:29:40 +0700 (NOVST) Message-Id: <200008020529.MAA83737@wint.itfs.nsk.su> From: Nickolay Dudorov To: current@FreeBSD.ORG Cc: ru@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/kdump mkioctls In-Reply-To: <200008010815.BAA73139@freefall.freebsd.org> X-Newsgroups: itfs.freebsd.cvs.all User-Agent: tin/1.5.6-20000726 ("Lucretia") (UNIX) (FreeBSD/5.0-CURRENT (i386)) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <200008010815.BAA73139@freefall.freebsd.org> you wrote: > > ru 2000/08/01 01:15:06 PDT > > Modified files: > usr.bin/kdump mkioctls > Log: > Fix an off-by-nine error when building a list of includes. > > Revision Changes Path > 1.17 +2 -2 src/usr.bin/kdump/mkioctls After this commit newly generated 'ioctl.c' includes which used 'ETHER_ADDR_LEN' defined in which is not included in 'ioctl.c'. With the next patch I can make "usr.bin/kdump" and "usr.bin/truss". Index: src/usr.bin/kdump/mkioctls =================================================================== RCS file: /store/CVS/src/usr.bin/kdump/mkioctls,v retrieving revision 1.17 diff -b -u -r1.17 mkioctls --- src/usr.bin/kdump/mkioctls 2000/08/01 08:15:06 1.17 +++ src/usr.bin/kdump/mkioctls 2000/08/02 05:28:33 @@ -41,6 +41,7 @@ print "#include " print "#include " print "#include " + print "#include " print "#include " print "#include " print "#include " To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message