diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-25 04:15:37 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-25 04:15:37 +0200 |
commit | bf2af9acb28ed6d8bbe351d669daaa140d0239f0 (patch) | |
tree | 3adba401caf5c25406f89ebe053a0d9dbb043b54 /networking/tc.c | |
parent | 4f26c97b9a2fdf6d967eafa06c67d04e432840a1 (diff) | |
download | busybox-w32-bf2af9acb28ed6d8bbe351d669daaa140d0239f0.tar.gz busybox-w32-bf2af9acb28ed6d8bbe351d669daaa140d0239f0.tar.bz2 busybox-w32-bf2af9acb28ed6d8bbe351d669daaa140d0239f0.zip |
flash_lock, flash_unlock: new applets
By Thierry Reding (thierry.reding AT avionic-design.de)
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tc.c')
-rw-r--r-- | networking/tc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/tc.c b/networking/tc.c index 79cdd7c55..4e84faae9 100644 --- a/networking/tc.c +++ b/networking/tc.c | |||
@@ -322,7 +322,7 @@ static int print_qdisc(const struct sockaddr_nl *who UNUSED_PARAM, | |||
322 | int qqq = index_in_strings(_q_, name); | 322 | int qqq = index_in_strings(_q_, name); |
323 | if (qqq == 0) { /* pfifo_fast aka prio */ | 323 | if (qqq == 0) { /* pfifo_fast aka prio */ |
324 | prio_print_opt(tb[TCA_OPTIONS]); | 324 | prio_print_opt(tb[TCA_OPTIONS]); |
325 | } else if (qqq == 1) { /* class based queueing */ | 325 | } else if (qqq == 1) { /* class based queuing */ |
326 | cbq_print_opt(tb[TCA_OPTIONS]); | 326 | cbq_print_opt(tb[TCA_OPTIONS]); |
327 | } else | 327 | } else |
328 | bb_error_msg("unknown %s", name); | 328 | bb_error_msg("unknown %s", name); |
@@ -388,7 +388,7 @@ static int print_class(const struct sockaddr_nl *who UNUSED_PARAM, | |||
388 | int qqq = index_in_strings(_q_, name); | 388 | int qqq = index_in_strings(_q_, name); |
389 | if (qqq == 0) { /* pfifo_fast aka prio */ | 389 | if (qqq == 0) { /* pfifo_fast aka prio */ |
390 | /* nothing. */ /*prio_print_opt(tb[TCA_OPTIONS]);*/ | 390 | /* nothing. */ /*prio_print_opt(tb[TCA_OPTIONS]);*/ |
391 | } else if (qqq == 1) { /* class based queueing */ | 391 | } else if (qqq == 1) { /* class based queuing */ |
392 | /* cbq_print_copt() is identical to cbq_print_opt(). */ | 392 | /* cbq_print_copt() is identical to cbq_print_opt(). */ |
393 | cbq_print_opt(tb[TCA_OPTIONS]); | 393 | cbq_print_opt(tb[TCA_OPTIONS]); |
394 | } else | 394 | } else |