aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-02-02 12:45:38 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-02-02 12:45:38 +0100
commitbb1dcc9aab5f517d963b601289aa75508d6e088e (patch)
tree682957f7a02ac69cbe9c1adb5f22092bfd379de2 /networking
parent5b9b1365a086056e992e7868db8e49989fedcbaf (diff)
downloadbusybox-w32-bb1dcc9aab5f517d963b601289aa75508d6e088e.tar.gz
busybox-w32-bb1dcc9aab5f517d963b601289aa75508d6e088e.tar.bz2
busybox-w32-bb1dcc9aab5f517d963b601289aa75508d6e088e.zip
more thorough fix for systems with strange socklen_t
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/ifconfig.c2
-rw-r--r--networking/interface.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c
index 1e960d45c..1a56c1cd5 100644
--- a/networking/ifconfig.c
+++ b/networking/ifconfig.c
@@ -36,8 +36,8 @@
36#include <sys/types.h> 36#include <sys/types.h>
37#include <netinet/if_ether.h> 37#include <netinet/if_ether.h>
38#endif 38#endif
39#include "inet_common.h"
40#include "libbb.h" 39#include "libbb.h"
40#include "inet_common.h"
41 41
42#if ENABLE_FEATURE_IFCONFIG_SLIP 42#if ENABLE_FEATURE_IFCONFIG_SLIP
43# include <net/if_slip.h> 43# include <net/if_slip.h>
diff --git a/networking/interface.c b/networking/interface.c
index b64d24a58..0d5a0f97d 100644
--- a/networking/interface.c
+++ b/networking/interface.c
@@ -33,8 +33,8 @@
33 33
34#include <net/if.h> 34#include <net/if.h>
35#include <net/if_arp.h> 35#include <net/if_arp.h>
36#include "inet_common.h"
37#include "libbb.h" 36#include "libbb.h"
37#include "inet_common.h"
38 38
39 39
40#if ENABLE_FEATURE_HWIB 40#if ENABLE_FEATURE_HWIB