diff options
Diffstat (limited to 'networking/nameif.c')
-rw-r--r-- | networking/nameif.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/networking/nameif.c b/networking/nameif.c index a9d422110..886ff49a8 100644 --- a/networking/nameif.c +++ b/networking/nameif.c @@ -32,10 +32,12 @@ #include <string.h> #include <net/if.h> #include <netinet/ether.h> -#include <linux/sockios.h> #include "busybox.h" +/* take from linux/sockios.h */ +#define SIOCSIFNAME 0x8923 /* set interface name */ + /* Octets in one ethernet addr, from <linux/if_ether.h> */ #define ETH_ALEN 6 |