wlan: Adding HS2.0 IEs in the Re-Assoc Requset

DUT fails to send re-assoc

Change-Id: Ibf293d952875bf91b09b9838eb4b076a1e333221
CR-Fixed: 407823
diff --git a/CORE/SME/src/csr/csrUtil.c b/CORE/SME/src/csr/csrUtil.c
index 69faeb2..70f0456 100644
--- a/CORE/SME/src/csr/csrUtil.c
+++ b/CORE/SME/src/csr/csrUtil.c
@@ -3513,7 +3513,16 @@
         smsLog(pMac, LOGE, FL("  session %d not found "), sessionId);
         return FALSE;
     }
-
+   /* to force the AP initiate fresh 802.1x authentication after re-association should not 
+    * fill the PMKID from cache  this is needed 
+    * by the HS 2.0 passpoint certification 5.2.a and b testcases */ 
+    
+    if(pSession->fIgnorePMKIDCache)
+    {
+        pSession->fIgnorePMKIDCache = FALSE;
+        return fRC;
+    }
+    
     do
     {
         for( Index=0; Index < pSession->NumPmkidCache; Index++ )