aboutsummaryrefslogtreecommitdiff
path: root/networking/ifconfig.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-05-03 22:30:08 +0000
committerRob Landley <rob@landley.net>2005-05-03 22:30:08 +0000
commit0d38301d851f29e1f64db1c0759c7fb97c59347e (patch)
tree37e74599154c1bfe7e62a973e9587c24dfa860c4 /networking/ifconfig.c
parent93983040c51ccbb2a19fc53f50498148edf98f65 (diff)
downloadbusybox-0d38301d851f29e1f64db1c0759c7fb97c59347e.tar.gz
From: Shaun Jackman <sjackman@gmail.com>
To: busybox@mail.codepoet.org Wrap sockaddr_in6 in a ifdef CONFIG_FEATURE_IPV6. Include sys/types.h instead of asm/types.h. Include netinet/if_ether.h instead of linux/if_ether.h The ioctl request argument is an int, not an unsigned short.
Diffstat (limited to 'networking/ifconfig.c')
-rw-r--r--networking/ifconfig.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c
index 4e3df2982..fc7798f2d 100644
--- a/networking/ifconfig.c
+++ b/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;
};