diff options
| author | Kanchanapally, Vidyullatha <vkanchan@qti.qualcomm.com> | 2014-01-24 14:00:49 -0800 |
|---|---|---|
| committer | Prakash Dhavali <pdhavali@qca.qualcomm.com> | 2014-01-26 00:05:34 -0800 |
| commit | b772ee87520bef03ec47e7dc587ab1364c438fa1 (patch) | |
| tree | 4e8580ba97921aa00a6ef9a1d8ee63de52c27797 | |
| parent | 3c4a04eaf5b5b81ef491f66d29c89e938115392a (diff) | |
wlan: Copying Duration info to Beacon Report.
Fix for issue where duration IE is seen as zero in
Beacon report. With the fix the duration will now be
copied to the beacon report.
Change-Id: I5bf00de315f4407c7d1d8801b883a333a9cbd2fd
CRs-Fixed: 596780
| -rw-r--r-- | CORE/SME/src/rrm/sme_rrm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CORE/SME/src/rrm/sme_rrm.c b/CORE/SME/src/rrm/sme_rrm.c index b4fb9f4b9512..c3af20dbbbcb 100644 --- a/CORE/SME/src/rrm/sme_rrm.c +++ b/CORE/SME/src/rrm/sme_rrm.c @@ -212,6 +212,7 @@ static eHalStatus sme_RrmSendBeaconReportXmitInd( tpAniSirGlobal pMac, pBeaconRep->messageType = eWNI_SME_BEACON_REPORT_RESP_XMIT_IND; pBeaconRep->length = length; pBeaconRep->uDialogToken = pSmeRrmContext->token; + pBeaconRep->duration = pSmeRrmContext->duration[0]; pBeaconRep->regClass = pSmeRrmContext->regClass; vos_mem_copy( pBeaconRep->bssId, pSmeRrmContext->sessionBssId, sizeof(tSirMacAddr) ); |
