aboutsummaryrefslogtreecommitdiff
path: root/networking/ifenslave.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-09-23 23:47:52 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-09-23 23:47:52 +0200
commitecb179b6d72c58acbdbc707538d7562bc1c0a880 (patch)
tree3f116be1a1e265fd19a359611c7dfc3c96a410ca /networking/ifenslave.c
parent606291beabab14c85a141c7a4225fbcab8d19fbd (diff)
downloadbusybox-w32-ecb179b6d72c58acbdbc707538d7562bc1c0a880.tar.gz
busybox-w32-ecb179b6d72c58acbdbc707538d7562bc1c0a880.tar.bz2
busybox-w32-ecb179b6d72c58acbdbc707538d7562bc1c0a880.zip
ifenslave: fix for 2.4 kernels compile
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ifenslave.c')
-rw-r--r--networking/ifenslave.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/networking/ifenslave.c b/networking/ifenslave.c
index 218000708..28f0c0b6b 100644
--- a/networking/ifenslave.c
+++ b/networking/ifenslave.c
@@ -101,13 +101,15 @@
101#include "libbb.h" 101#include "libbb.h"
102 102
103/* #include <net/if.h> - no. linux/if_bonding.h pulls in linux/if.h */ 103/* #include <net/if.h> - no. linux/if_bonding.h pulls in linux/if.h */
104#include <linux/if.h>
104#include <net/if_arp.h> 105#include <net/if_arp.h>
105#include <linux/if_bonding.h> 106#include <linux/if_bonding.h>
106#include <linux/sockios.h> 107#include <linux/sockios.h>
107
108#include "fix_u32.h" /* hack, so we may include kernel's ethtool.h */ 108#include "fix_u32.h" /* hack, so we may include kernel's ethtool.h */
109#include <linux/ethtool.h> 109#include <linux/ethtool.h>
110 110#ifndef BOND_ABI_VERSION
111# define BOND_ABI_VERSION 2
112#endif
111#ifndef IFNAMSIZ 113#ifndef IFNAMSIZ
112# define IFNAMSIZ 16 114# define IFNAMSIZ 16
113#endif 115#endif