|
@@ -1856,10 +1856,10 @@ BOOLEAN CmControlResponseMessage(struct bcm_mini_adapter *Adapter, /* <Pointer
|
|
|
UINT uiSearchRuleIndex;
|
|
|
ULONG ulSFID;
|
|
|
|
|
|
- pLeader->PLength = sizeof(stLocalSFDeleteIndication);
|
|
|
- *((stLocalSFDeleteIndication *)&(Adapter->caDsxReqResp[LEADER_SIZE])) = *((stLocalSFDeleteIndication *)pstAddIndication);
|
|
|
+ pLeader->PLength = sizeof(struct bcm_del_indication);
|
|
|
+ *((struct bcm_del_indication *)&(Adapter->caDsxReqResp[LEADER_SIZE])) = *((struct bcm_del_indication *)pstAddIndication);
|
|
|
|
|
|
- ulSFID = ntohl(((stLocalSFDeleteIndication *)pstAddIndication)->u32SFID);
|
|
|
+ ulSFID = ntohl(((struct bcm_del_indication *)pstAddIndication)->u32SFID);
|
|
|
uiSearchRuleIndex = SearchSfid(Adapter, ulSFID);
|
|
|
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "DSD - Removing connection %x", uiSearchRuleIndex);
|
|
|
|
|
@@ -1870,7 +1870,7 @@ BOOLEAN CmControlResponseMessage(struct bcm_mini_adapter *Adapter, /* <Pointer
|
|
|
}
|
|
|
|
|
|
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "SENDING DSD RESPONSE TO MAC");
|
|
|
- ((stLocalSFDeleteIndication *)&(Adapter->caDsxReqResp[LEADER_SIZE]))->u8Type = DSD_RSP;
|
|
|
+ ((struct bcm_del_indication *)&(Adapter->caDsxReqResp[LEADER_SIZE]))->u8Type = DSD_RSP;
|
|
|
CopyBufferToControlPacket(Adapter, (PVOID)Adapter->caDsxReqResp);
|
|
|
}
|
|
|
case DSD_RSP:
|