diff options
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 |