diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-08-15 09:54:51 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-08-15 09:54:51 +0200 |
commit | fc364ba9e3e39bc8d75016a9bf66e4bbbb5a1c87 (patch) | |
tree | 508361daf007fcea2680063826fc873d4badc3b8 | |
parent | 6761d7da83b54027be441ec942ca25eecdc58f62 (diff) | |
download | busybox-w32-fc364ba9e3e39bc8d75016a9bf66e4bbbb5a1c87.tar.gz busybox-w32-fc364ba9e3e39bc8d75016a9bf66e4bbbb5a1c87.tar.bz2 busybox-w32-fc364ba9e3e39bc8d75016a9bf66e4bbbb5a1c87.zip |
fix build error with musl libc due to if_slip.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ifconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c index 999305aff..8984b0207 100644 --- a/networking/ifconfig.c +++ b/networking/ifconfig.c | |||
@@ -56,7 +56,7 @@ | |||
56 | #endif | 56 | #endif |
57 | 57 | ||
58 | #if ENABLE_FEATURE_IFCONFIG_SLIP | 58 | #if ENABLE_FEATURE_IFCONFIG_SLIP |
59 | # include <net/if_slip.h> | 59 | # include <linux/if_slip.h> |
60 | #endif | 60 | #endif |
61 | 61 | ||
62 | /* I don't know if this is needed for busybox or not. Anyone? */ | 62 | /* I don't know if this is needed for busybox or not. Anyone? */ |