aboutsummaryrefslogtreecommitdiff
path: root/networking/ip.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-04-12 02:35:44 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-04-12 02:35:44 +0000
commit19efb3dc59920b9fed6ec16566a2046e9f3251d9 (patch)
tree9a0caa2c211f09dfb6953f210ded3fcb570a7ede /networking/ip.c
parent36c74789920de6ccee6554b148313ae29b86f2aa (diff)
downloadbusybox-19efb3dc59920b9fed6ec16566a2046e9f3251d9.tar.gz
Fix compile error if CONFIG_FEATURE_IP_ADDR isnt enabled
Diffstat (limited to 'networking/ip.c')
-rw-r--r--networking/ip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/ip.c b/networking/ip.c
index a0781bdba..cfdbf8b96 100644
--- a/networking/ip.c
+++ b/networking/ip.c
@@ -93,17 +93,17 @@ int ip_main(int argc, char **argv)
}
#endif
#ifdef CONFIG_FEATURE_IP_ROUTE
- else if (matches(argv[1], "route") == 0) {
+ if (matches(argv[1], "route") == 0) {
ret = do_iproute(argc-2, argv+2);
}
#endif
#ifdef CONFIG_FEATURE_IP_LINK
- else if (matches(argv[1], "link") == 0) {
+ if (matches(argv[1], "link") == 0) {
ret = do_iplink(argc-2, argv+2);
}
#endif
#ifdef CONFIG_FEATURE_IP_TUNNEL
- else if (matches(argv[1], "tunnel") == 0 || strcmp(argv[1], "tunl") == 0) {
+ if (matches(argv[1], "tunnel") == 0 || strcmp(argv[1], "tunl") == 0) {
ret = do_iptunnel(argc-2, argv+2);
}
#endif