diff options
author | Eric Andersen | 2005-07-18 23:51:27 +0000 |
---|---|---|
committer | Eric Andersen | 2005-07-18 23:51:27 +0000 |
commit | 164a716f964bba247c660bc70149234f95146871 (patch) | |
tree | 95a8a6f75cb2ed1bb07cb6019088db7348ebf4d4 /busybox/networking/ifconfig.c | |
parent | 8c59a0bf0e9e2d87b0ff273ea3f0bf05bbbf6373 (diff) | |
download | busybox-164a716f964bba247c660bc70149234f95146871.zip busybox-164a716f964bba247c660bc70149234f95146871.tar.gz |
busybox-1.0.1-rc1.patch
http://busybox.net/lists/busybox/2005-July/014974.html
Diffstat (limited to 'busybox/networking/ifconfig.c')
-rw-r--r-- | busybox/networking/ifconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/busybox/networking/ifconfig.c b/busybox/networking/ifconfig.c index 4e3df29..fc7798f 100644 --- a/busybox/networking/ifconfig.c +++ b/busybox/networking/ifconfig.c @@ -46,8 +46,8 @@ #include <netpacket/packet.h> #include <net/ethernet.h> #else -#include <asm/types.h> -#include <linux/if_ether.h> +#include <sys/types.h> +#include <netinet/if_ether.h> #endif #include "inet_common.h" #include "busybox.h" @@ -177,7 +177,7 @@ struct in6_ifreq { struct arg1opt { const char *name; - unsigned short selector; + int selector; unsigned short ifr_offset; }; |