Prechádzať zdrojové kódy

qcacld-3.0: Print the last acl mac address

Host won't print acl mac address if size equal to MAX_ACL_MAC_ADDRESS.
The logic is unreasonable and add this change allows to print acl mac
address if size equal to MAX_ACL_MAC_ADDRESS.

Change-Id: Iabf10c7c5584d4217be98f7e1f3e67c94a6096a1
CRs-Fixed: 3100336
Wu Gao 3 rokov pred
rodič
commit
659daa3fb8
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      core/sap/src/sap_fsm.c

+ 1 - 1
core/sap/src/sap_fsm.c

@@ -3788,7 +3788,7 @@ void sap_print_acl(struct qdf_mac_addr *macList, uint16_t size)
 
 	sap_debug("print acl entered");
 
-	if ((!macList) || (size == 0) || (size >= MAX_ACL_MAC_ADDRESS)) {
+	if ((!macList) || (size == 0) || (size > MAX_ACL_MAC_ADDRESS)) {
 		sap_err("Either buffer is NULL or size %d is incorrect", size);
 		return;
 	}