diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-17 12:58:30 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-17 12:58:30 +0000 |
commit | d46e6d1a55f1182b8aa2d621a2532bad3bc20ee9 (patch) | |
tree | cc859edcef407b063d8e7a2c76cf0fe74465cb5a /networking/ip.c | |
parent | a35958d4ad20dff88ac0db6f9d73a00fc2d89e14 (diff) | |
download | busybox-w32-d46e6d1a55f1182b8aa2d621a2532bad3bc20ee9.tar.gz busybox-w32-d46e6d1a55f1182b8aa2d621a2532bad3bc20ee9.tar.bz2 busybox-w32-d46e6d1a55f1182b8aa2d621a2532bad3bc20ee9.zip |
fix trivial compile errors found by randomconfig run
Diffstat (limited to 'networking/ip.c')
-rw-r--r-- | networking/ip.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/networking/ip.c b/networking/ip.c index dd1d863da..c7816c8cc 100644 --- a/networking/ip.c +++ b/networking/ip.c | |||
@@ -18,6 +18,12 @@ | |||
18 | #include "libiproute/utils.h" | 18 | #include "libiproute/utils.h" |
19 | #include "libiproute/ip_common.h" | 19 | #include "libiproute/ip_common.h" |
20 | 20 | ||
21 | #if ENABLE_FEATURE_IP_ADDRESS \ | ||
22 | || ENABLE_FEATURE_IP_ROUTE \ | ||
23 | || ENABLE_FEATURE_IP_LINK \ | ||
24 | || ENABLE_FEATURE_IP_TUNNEL \ | ||
25 | || ENABLE_FEATURE_IP_RULE | ||
26 | |||
21 | static int ATTRIBUTE_NORETURN ip_print_help(int ATTRIBUTE_UNUSED ac, char ATTRIBUTE_UNUSED **av) | 27 | static int ATTRIBUTE_NORETURN ip_print_help(int ATTRIBUTE_UNUSED ac, char ATTRIBUTE_UNUSED **av) |
22 | { | 28 | { |
23 | bb_show_usage(); | 29 | bb_show_usage(); |
@@ -121,3 +127,5 @@ int ip_main(int argc, char **argv) | |||
121 | } | 127 | } |
122 | return (ip_func(argc, argv)); | 128 | return (ip_func(argc, argv)); |
123 | } | 129 | } |
130 | |||
131 | #endif /* any of ENABLE_FEATURE_IP_xxx is 1 */ | ||