diff options
| author | Kalikinkar dhara <c_kaliki@qca.qualcomm.com> | 2014-04-24 14:11:28 -0700 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-04-26 00:48:12 -0700 |
| commit | 026ae1b783f6d7e5d2820df887c6c707defd865e (patch) | |
| tree | af2411071c0546960e59620453008fdf8178e823 | |
| parent | 012db621c73a54f654a0f362e6295654952b8775 (diff) | |
qcacld: Fix for WPS IE for Assoc Req in SAP mode
correct AddnIE length to WPS IE for Assoc Resp
in SAP mode
Change-Id: I7c5e8236ae68f5bed807791a768d0d757dc819a0
CRs-Fixed: 640131
| -rw-r--r-- | CORE/MAC/src/pe/lim/limSendManagementFrames.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CORE/MAC/src/pe/lim/limSendManagementFrames.c b/CORE/MAC/src/pe/lim/limSendManagementFrames.c index 9b19ceb3e3a2..fa08d362955c 100644 --- a/CORE/MAC/src/pe/lim/limSendManagementFrames.c +++ b/CORE/MAC/src/pe/lim/limSendManagementFrames.c @@ -156,7 +156,7 @@ void limUpdateExtCapIEtoStruct(tpAniSirGlobal pMac, if ( DOT11F_EID_EXTCAP != pBuf[0] || pBuf[1] > DOT11F_IE_EXTCAP_MAX_LEN ) { - limLog( pMac, LOGE, + limLog( pMac, LOG1, FL("Invalid IEs eid = %d elem_len=%d "), pBuf[0],pBuf[1]); return; @@ -1692,6 +1692,8 @@ limSendAssocRspMgmtFrame(tpAniSirGlobal pMac, vos_mem_set(( tANI_U8* )&extractedExtCap, sizeof( tDot11fIEExtCap ), 0); + + addStripoffIELen = addnIELen; nSirStatus = limStripOffExtCapIEAndUpdateStruct(pMac, &addIE[0], &addStripoffIELen, |
