diff options
author | billf <billf@FreeBSD.org> | 1999-12-30 04:12:36 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-12-30 04:12:36 +0000 |
commit | 6dc9df830a17fa8cdd6823c098b0b82416cab050 (patch) | |
tree | 7a32ecc4b9d22e1add0f85f54cec748a49006e23 /usr.sbin/ifmcstat | |
parent | eeb98c1804a27879147df08d1ebdfc3043811649 (diff) | |
download | FreeBSD-src-6dc9df830a17fa8cdd6823c098b0b82416cab050.zip FreeBSD-src-6dc9df830a17fa8cdd6823c098b0b82416cab050.tar.gz |
Fix KERNEL vs _KERNEL spammage.
Submitted by: Paul Saab <paul@mu.org>
Diffstat (limited to 'usr.sbin/ifmcstat')
-rw-r--r-- | usr.sbin/ifmcstat/ifmcstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ifmcstat/ifmcstat.c b/usr.sbin/ifmcstat/ifmcstat.c index 3167b96..d5ffc13 100644 --- a/usr.sbin/ifmcstat/ifmcstat.c +++ b/usr.sbin/ifmcstat/ifmcstat.c @@ -48,11 +48,11 @@ #include <netinet/in.h> #ifndef __NetBSD__ # ifdef __FreeBSD__ -# define KERNEL +# define _KERNEL # endif # include <netinet/if_ether.h> # ifdef __FreeBSD__ -# undef KERNEL +# undef _KERNEL # endif #else # include <net/if_ether.h> |