Remove dead code from wpas_sched_scan_plans_set()

scan_plan->interval was checked against 0 twice; the latter case cannot
happen.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2016-05-28 22:54:00 +03:00
parent 4208329528
commit 7012e2589f

View file

@ -2607,13 +2607,6 @@ int wpas_sched_scan_plans_set(struct wpa_supplicant *wpa_s, const char *cmd)
goto fail;
}
if (!scan_plan->interval) {
wpa_printf(MSG_ERROR,
"scan plan %u: Interval cannot be zero",
num);
goto fail;
}
if (scan_plan->interval > wpa_s->max_sched_scan_plan_interval) {
wpa_printf(MSG_WARNING,
"scan plan %u: Scan interval too long(%u), use the maximum allowed(%u)",