diff options
author | bz <bz@FreeBSD.org> | 2009-06-17 12:44:11 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2009-06-17 12:44:11 +0000 |
commit | b017972f116ec349316c8750695dd271f9a583ea (patch) | |
tree | 0512a76c52406b2b80e4f24f2882a90af09d3a72 /sys/net | |
parent | 21376236dde77e2c63790a0607687faa898d87d6 (diff) | |
download | FreeBSD-src-b017972f116ec349316c8750695dd271f9a583ea.zip FreeBSD-src-b017972f116ec349316c8750695dd271f9a583ea.tar.gz |
Add the explicit include of vimage.h to another five .c files still
missing it.
Remove the "hidden" kernel only include of vimage.h from ip_var.h added
with the very first Vimage commit r181803 to avoid further kernel poisoning.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_enc.c | 1 | ||||
-rw-r--r-- | sys/net/if_gre.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/net/if_enc.c b/sys/net/if_enc.c index 391b798..38321ff 100644 --- a/sys/net/if_enc.c +++ b/sys/net/if_enc.c @@ -38,6 +38,7 @@ #include <sys/socket.h> #include <sys/sockio.h> #include <sys/sysctl.h> +#include <sys/vimage.h> #include <net/if.h> #include <net/if_clone.h> diff --git a/sys/net/if_gre.c b/sys/net/if_gre.c index 5ec12e0..e7eb34a 100644 --- a/sys/net/if_gre.c +++ b/sys/net/if_gre.c @@ -64,6 +64,7 @@ #include <sys/sockio.h> #include <sys/sysctl.h> #include <sys/systm.h> +#include <sys/vimage.h> #include <net/ethernet.h> #include <net/if.h> |