diff --git a/tc/q_choke.c b/tc/q_choke.c index 6e54cb71..04a864f3 100644 --- a/tc/q_choke.c +++ b/tc/q_choke.c @@ -122,7 +122,7 @@ static int choke_parse_opt(struct qdisc_util *qu, int argc, char **argv, return -1; } - if (opt.qth_min > opt.qth_min) { + if (opt.qth_min >= opt.qth_max) { fprintf(stderr, "\"min\" is not smaller than \"max\"\n"); return -1; }