In article <[EMAIL PROTECTED]> 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 [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to