PERFORCE change 80815 for review
soc-anders
soc-anders at FreeBSD.org
Fri Jul 22 23:35:40 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=80815
Change 80815 by soc-anders at soc-anders_gimli on 2005/07/22 23:34:58
Changes needed due to modification in kernel header files.
Affected files ...
.. //depot/projects/soc2005/ifcleanup/src/src/usr.bin/kdump/mkioctls#2 edit
.. //depot/projects/soc2005/ifcleanup/src/src/usr.bin/systat/ip6.c#2 edit
.. //depot/projects/soc2005/ifcleanup/src/src/usr.sbin/ppp/iface.c#2 edit
Differences ...
==== //depot/projects/soc2005/ifcleanup/src/src/usr.bin/kdump/mkioctls#2 (text+ko) ====
@@ -23,7 +23,7 @@
find -H -s * -name '*.h' |
xargs egrep -l \
'^#[ ]*define[ ]+[A-Za-z_][A-Za-z0-9_]*[ ]+_IO[^a-z0-9_]' |
- awk '{printf("#include <%s>\\\\n", $1)}'
+ awk '{if ($1 != "netinet6/in6.h") {printf("#include <%s>\\\\n", $1)}}'
`
awk -v x="$ioctl_includes" 'BEGIN {print x}' |
==== //depot/projects/soc2005/ifcleanup/src/src/usr.bin/systat/ip6.c#2 (text+ko) ====
@@ -52,7 +52,7 @@
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
-#include <netinet6/ip6_var.h>
+#include <netinet/ip6.h>
#include <stdlib.h>
#include <string.h>
==== //depot/projects/soc2005/ifcleanup/src/src/usr.sbin/ppp/iface.c#2 (text+ko) ====
@@ -36,7 +36,7 @@
#endif
#include <net/route.h>
#include <netinet/in_systm.h>
-#include <netinet/in_var.h>
+#include <netinet/in.h>
#include <netinet/ip.h>
#ifndef NOINET6
#include <netinet6/nd6.h>
More information about the p4-projects
mailing list