Index: iproute2-2.6.9/tc/q_wrr.c =================================================================== --- iproute2-2.6.9.orig/tc/q_wrr.c 2004-10-25 23:37:35.806894256 +0200 +++ iproute2-2.6.9/tc/q_wrr.c 2004-11-06 19:30:22.801117432 +0100 @@ -312,12 +312,11 @@ static int wrr_print_xstats(struct qdisc } -struct qdisc_util wrr_util = { - NULL, - "wrr", - wrr_parse_opt, - wrr_print_opt, - wrr_print_xstats, - wrr_parse_copt, - wrr_print_copt +struct qdisc_util wrr_qdisc_util = { + .id = "wrr", + .parse_qopt = wrr_parse_opt, + .print_qopt = wrr_print_opt, + .print_xstats = wrr_print_xstats, + .parse_copt = wrr_parse_copt, + .print_copt = wrr_print_copt };