diff options
| author | Visweswara Tanuku <vtanuku@codeaurora.org> | 2017-09-28 17:59:10 +0530 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-10-06 04:26:18 -0700 |
| commit | 472e3797b2c576da2fdf35bb9e2317125c8b7b0c (patch) | |
| tree | 49a04f51c9603d12364ce0a018c332100340d18a | |
| parent | 1a9c207a6ca149736ea02fe6c49b420a62cb77f7 (diff) | |
qcacld-2.0: Fix SoftAP response for a Reassoc Request
After association when SoftAP received a Reassoc Request,
Assoc Response is sent instead of Reassoc Response.
Ensure Reassoc Response is sent correctly by SoftAP.
Change-Id: Ia4c9cc4419b85e3de531185f3196606b6a8b3629
CRs-Fixed: 2092394
| -rw-r--r-- | CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c b/CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c index 23d2cf3e0be3..34c6dd2cd7d9 100644 --- a/CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c +++ b/CORE/MAC/src/pe/lim/limProcessAssocReqFrame.c @@ -321,7 +321,7 @@ limProcessAssocReqFrame(tpAniSirGlobal pMac, tANI_U8 *pRxPacketInfo, */ limSendAssocRspMgmtFrame(pMac, eSIR_SUCCESS, pStaDs->assocId, pStaDs->staAddr, - pStaDs->mlmStaContext.subType, pStaDs, + subType, pStaDs, psessionEntry); limLog(pMac, LOGE, FL("DUT already received an assoc request frame " |
