Date: Wed, 2 Aug 2000 12:29:40 +0700 (NOVST) From: Nickolay Dudorov <nnd@wint.itfs.nsk.su> To: current@FreeBSD.ORG Cc: ru@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/kdump mkioctls Message-ID: <200008020529.MAA83737@wint.itfs.nsk.su> In-Reply-To: <200008010815.BAA73139@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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 <net/if_ieee80211.h> which used 'ETHER_ADDR_LEN' defined in <net/ethernet.h> 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 <net/if.h>" print "#include <net/if_var.h>" print "#include <net/route.h>" + print "#include <net/ethernet.h>" print "#include <netatm/atm.h>" print "#include <netatm/atm_if.h>" print "#include <netatm/atm_sap.h>" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200008020529.MAA83737>