diff -r 86979fe66c4c -r 504e41245867 syncmlfw/common/syncagent/src/nsmlauth.cpp --- a/syncmlfw/common/syncagent/src/nsmlauth.cpp Wed Mar 31 23:00:03 2010 +0300 +++ b/syncmlfw/common/syncagent/src/nsmlauth.cpp Wed Apr 14 16:50:34 2010 +0300 @@ -17,7 +17,7 @@ -#include +#include #include #include "NSmlAuth.h" #include "nsmlcliagconstants.h" @@ -172,7 +172,7 @@ { CreateAndSaveNewNonceL(); } - TImCodecB64 B64Coder; + TBase64 B64Coder; delete iB64Nonce; iB64Nonce = NULL; iB64Nonce = HBufC8::NewL( iNonce->Length() * 2 + 1 ); @@ -269,7 +269,7 @@ HBufC8* B64Cred; if ( iFormat->Des() != KNSmlAgentBase64Format ) { - TImCodecB64 B64Coder; + TBase64 B64Coder; B64Cred = HBufC8::NewLC( iCredential->Length() * 2 + 1 ); TPtr8 B64CredPtr( B64Cred->Des() ); User::LeaveIfError( B64Coder.Encode( *iCredential, B64CredPtr ) );