diff options
| author | Selvaraj, Sridhar <sselvara@codeaurora.org> | 2016-09-16 20:33:21 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-09-21 17:03:44 -0700 |
| commit | 88015a1bc0d0640ce1445aced6e93a55d345af10 (patch) | |
| tree | 7f91bb6da0a5dd39a7af85695d09f86114f17ef1 | |
| parent | 5ba69b744c2c22c2c0bb1ee8fd050bafa1bebbc7 (diff) | |
qcacld-3.0: Fix PMF related propagation error in handling assoc rsp
This changes fixes the qcacld-2.0 tp qcacld-3.0 propagation error
of Change-Id:I4b37d072bc92e003fcfe62ffe8f93f7c185eb6c7. Host driver
doesn't honor the Assoc reject with eSIR_MAC_TRY_AGAIN_LATER status
for non-PMF connection, due to this error.
Change-Id: Ib2defa27ee5c97ada53808d2e24a29b976fe5107
CRs-Fixed: 1067670
| -rw-r--r-- | core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c b/core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c index 80c897413c65..ab87740e3707 100644 --- a/core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c +++ b/core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c @@ -740,7 +740,7 @@ lim_process_assoc_rsp_frame(tpAniSirGlobal mac_ctx, if (assoc_rsp->statusCode != eSIR_MAC_SUCCESS_STATUS #ifdef WLAN_FEATURE_11W - && (session_entry->limRmfEnabled || + && (!session_entry->limRmfEnabled || assoc_rsp->statusCode != eSIR_MAC_TRY_AGAIN_LATER) #endif ) { |
