diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-31 07:34:14 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-31 07:34:14 +0000 |
commit | d12fcc20dac8415a89898fdaa9bfabaac39e5e33 (patch) | |
tree | fca611e3fc499941e4c294fd22edf409fde9f1ed /networking | |
parent | 3e57adb73198874b3924cb9aa8770193c894b1a9 (diff) | |
download | busybox-w32-d12fcc20dac8415a89898fdaa9bfabaac39e5e33.tar.gz busybox-w32-d12fcc20dac8415a89898fdaa9bfabaac39e5e33.tar.bz2 busybox-w32-d12fcc20dac8415a89898fdaa9bfabaac39e5e33.zip |
libiproute: fix option parsing, so that "ip -o link" works again.
closes bug 3524
Diffstat (limited to 'networking')
-rw-r--r-- | networking/libiproute/ip_parse_common_args.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/ip_parse_common_args.c b/networking/libiproute/ip_parse_common_args.c index 294bde540..5e4012b81 100644 --- a/networking/libiproute/ip_parse_common_args.c +++ b/networking/libiproute/ip_parse_common_args.c | |||
@@ -54,7 +54,7 @@ char **ip_parse_common_args(char **argv) | |||
54 | break; | 54 | break; |
55 | } | 55 | } |
56 | } | 56 | } |
57 | arg = index_in_strings(ip_common_commands, opt); | 57 | arg = index_in_substrings(ip_common_commands, opt); |
58 | if (arg < 0) | 58 | if (arg < 0) |
59 | bb_show_usage(); | 59 | bb_show_usage(); |
60 | if (arg == ARG_oneline) { | 60 | if (arg == ARG_oneline) { |