Parcourir la source

qcacld-3.0: Fill reject ap type in blm fill reject list

Fill the reject ap type as the one requested by the user
in the reject ap list.

Change-Id: Ie26180293e4b0c5c212ebcd31a15fd93f9150f8e
CRs-Fixed: 2464748
gaurank kathpalia il y a 5 ans
Parent
commit
867e789300
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      components/blacklist_mgr/core/src/wlan_blm_core.c

+ 1 - 1
components/blacklist_mgr/core/src/wlan_blm_core.c

@@ -620,7 +620,7 @@ static void blm_fill_reject_list(qdf_list_t *reject_db_list,
 			reject_list[*num_of_reject_bssid].reject_duration =
 			       blm_get_delta_of_bssid(reject_ap_type, blm_entry);
 			reject_list[*num_of_reject_bssid].reject_ap_type =
-						blm_entry->reject_ap_type;
+								reject_ap_type;
 			reject_list[*num_of_reject_bssid].bssid =
 							blm_entry->bssid;
 			(*num_of_reject_bssid)++;