policy: fix incurrect handling of scan-requests with disabled timeout
[project/usteer.git] / policy.c
index 47a720f8299b1c549b29dbf34cd4edf34eeed519..67c9c75be2b255302b8cb445fea09dc10d998c4e 100644 (file)
--- a/policy.c
+++ b/policy.c
@@ -276,7 +276,7 @@ static void
 usteer_roam_sm_start_scan(struct sta_info *si, struct uevent *ev)
 {
        /* Start scanning in case we are not timeout-constrained or timeout has expired */
-       if (config.roam_scan_timeout && 
+       if (!config.roam_scan_timeout ||
            current_time > si->roam_scan_timeout_start + config.roam_scan_timeout) {
                usteer_roam_set_state(si, ROAM_TRIGGER_SCAN, ev);
                return;