diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-04-16 18:31:53 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-04-16 18:31:53 +0200 |
commit | 2514302658d4c9655965f90d560b58e6dc92856b (patch) | |
tree | 2b764fc1811497bf121ffaa7639f317ee40c1d59 | |
parent | 8c498b6c6e6fd0c218a1ea17d20ec399a5e7501d (diff) | |
download | busybox-w32-2514302658d4c9655965f90d560b58e6dc92856b.tar.gz busybox-w32-2514302658d4c9655965f90d560b58e6dc92856b.tar.bz2 busybox-w32-2514302658d4c9655965f90d560b58e6dc92856b.zip |
Use net/ethernet.h instead of linux/if_ether.h in more cases. Closes 3619
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/interface.c b/networking/interface.c index 83af62b7c..bea54c180 100644 --- a/networking/interface.c +++ b/networking/interface.c | |||
@@ -32,7 +32,7 @@ | |||
32 | */ | 32 | */ |
33 | #include <net/if.h> | 33 | #include <net/if.h> |
34 | #include <net/if_arp.h> | 34 | #include <net/if_arp.h> |
35 | #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION) | 35 | #ifndef __UCLIBC__ |
36 | # include <net/ethernet.h> | 36 | # include <net/ethernet.h> |
37 | #else | 37 | #else |
38 | # include <linux/if_ether.h> | 38 | # include <linux/if_ether.h> |