diff -r 5fae379060a7 -r bf6a71c50e42 ssl/libcrypto/src/crypto/certretriever/certretriever.cpp --- a/ssl/libcrypto/src/crypto/certretriever/certretriever.cpp Fri Jun 11 15:26:22 2010 +0300 +++ b/ssl/libcrypto/src/crypto/certretriever/certretriever.cpp Wed Aug 18 11:27:44 2010 +0300 @@ -1,5 +1,5 @@ /* -Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. +Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -37,7 +37,7 @@ extern "C" { #endif -int X509_add_symbian_certs(X509_STORE * store) +int X509_add_symbian_certsL(X509_STORE * store) { CActiveScheduler* activeScheduler; CActiveScheduler* CurrentActiveScheduler = CActiveScheduler::Current(); @@ -202,14 +202,14 @@ } else { - AppendCerts(); + AppendCertsL(); break; } case EDone: if (iState != ENoCerts) { - ProcessCerts(); //Process the last certificate + ProcessCertsL(); //Process the last certificate iCertCount = 0; } case ENoCerts: @@ -294,10 +294,10 @@ iState = EAppendCerts; } -void CCertRetriever::AppendCerts() +void CCertRetriever::AppendCertsL() { if(iCertCount>0) - ProcessCerts(); + ProcessCertsL(); CCTCertInfo *cert = iCerts[iCertCount]; @@ -314,7 +314,7 @@ } -void CCertRetriever::ProcessCerts() +void CCertRetriever::ProcessCertsL() { CX509Certificate *X509Cert; TRAPD(error, X509Cert = CX509Certificate::NewL( iCertPtr )); @@ -323,7 +323,7 @@ CleanupStack::PushL(X509Cert); - X509* x509 = CX509_Initializer::CreateX509(X509Cert); + X509* x509 = CX509_Initializer::CreateX509L(X509Cert); if(x509) {