networksecurity/tls/protocol/handshakereceiveevents.cpp
branchRCL_3
changeset 67 bb2423252ea3
parent 0 af10295192d8
child 75 c1029e558ef5
equal deleted inserted replaced
63:425d8f4f7fa5 67:bb2423252ea3
   446 		
   446 		
   447 		// Append the item into the Distinguished Names array and get the next list item
   447 		// Append the item into the Distinguished Names array and get the next list item
   448       HBufC8* buf = listPtr.AllocL();
   448       HBufC8* buf = listPtr.AllocL();
   449    	CleanupStack::PushL(buf);
   449    	CleanupStack::PushL(buf);
   450 		User::LeaveIfError(cryptoAttributes.iDistinguishedCANames.Append(buf) );
   450 		User::LeaveIfError(cryptoAttributes.iDistinguishedCANames.Append(buf) );
   451    	CleanupStack::Pop();
   451    	CleanupStack::Pop(buf);
   452 		listNode = listNode->Next();
   452 		listNode = listNode->Next();
   453 	}
   453 	}
   454    iTlsProvider->Attributes()->iClientAuthenticate = ETrue;
   454    iTlsProvider->Attributes()->iClientAuthenticate = ETrue;
   455 
   455 
   456 	TRequestStatus* p=&aStatus;
   456 	TRequestStatus* p=&aStatus;