diff options
author | Denys Vlasenko | 2013-08-15 09:54:51 +0200 |
---|---|---|
committer | Denys Vlasenko | 2013-08-15 09:54:51 +0200 |
commit | fc364ba9e3e39bc8d75016a9bf66e4bbbb5a1c87 (patch) | |
tree | 508361daf007fcea2680063826fc873d4badc3b8 | |
parent | 6761d7da83b54027be441ec942ca25eecdc58f62 (diff) | |
download | busybox-fc364ba9e3e39bc8d75016a9bf66e4bbbb5a1c87.zip busybox-fc364ba9e3e39bc8d75016a9bf66e4bbbb5a1c87.tar.gz |
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 999305a..8984b02 100644 --- a/networking/ifconfig.c +++ b/networking/ifconfig.c @@ -56,7 +56,7 @@ #endif #if ENABLE_FEATURE_IFCONFIG_SLIP -# include <net/if_slip.h> +# include <linux/if_slip.h> #endif /* I don't know if this is needed for busybox or not. Anyone? */ |