Finished the changes where the GetIdenTokenProviderInterface() was moved

to platform independant code.
This commit is contained in:
Juan Carlos Luciani
2006-05-02 03:01:26 +00:00
parent e6bb3b5db9
commit 243d49616a
3 changed files with 84 additions and 12 deletions

View File

@@ -122,7 +122,18 @@ ValidateAuthToken(
retStatus = PrincipalIfInit();
if (CASA_SUCCESS(retStatus))
{
g_moduleInitialized = true;
// Initialize the IdenToken complex
retStatus = IdenTokenInit();
if (CASA_SUCCESS(retStatus))
{
// Success
g_moduleInitialized = true;
}
else
{
PrincipalIfUninit();
ConfigIfUninit();
}
}
else
{