Bug 140056. Commented code to prevent login hangs in NDK.
This commit is contained in:
parent
daf881aa7c
commit
a7e5c11370
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 21 14:17:38 MST 2005 - jnorman@novell.com
|
||||
|
||||
- Bug 140056. Commented code to prevent login hangs in NDK.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 20 11:17:38 MST 2005 - jnorman@novell.com
|
||||
|
||||
|
@ -99,7 +99,11 @@ namespace sscs.common
|
||||
message.Append(" Executing Path: ");
|
||||
message.Append(type.ToString());
|
||||
message.Append(":");
|
||||
message.Append(sf.GetMethod().ToString());
|
||||
if (sf != null)
|
||||
message.Append(sf.GetMethod().ToString());
|
||||
else
|
||||
message.Append("Method unknown");
|
||||
|
||||
log( ConstStrings.DEBUG,message.ToString() );
|
||||
#endif
|
||||
}
|
||||
@ -125,7 +129,10 @@ namespace sscs.common
|
||||
message.Append(" Executing Path: ");
|
||||
message.Append(type.ToString());
|
||||
message.Append(":");
|
||||
message.Append(sf.GetMethod().ToString());
|
||||
if (sf != null)
|
||||
message.Append(sf.GetMethod().ToString());
|
||||
else
|
||||
message.Append("Method Unknown");
|
||||
log( ConstStrings.DEBUG,message.ToString() );
|
||||
#endif
|
||||
}
|
||||
@ -152,8 +159,12 @@ namespace sscs.common
|
||||
message.Append(" Executing Path: ");
|
||||
message.Append(type.ToString());
|
||||
message.Append("::");
|
||||
message.Append(sf.GetMethod().ToString());
|
||||
return message.ToString();
|
||||
if (sf != null)
|
||||
message.Append(sf.GetMethod().ToString());
|
||||
else
|
||||
message.Append("Method unknown");
|
||||
|
||||
return message.ToString();
|
||||
}
|
||||
|
||||
|
||||
|
@ -2709,6 +2709,7 @@ miCASAGetCredential
|
||||
store.version = 1;
|
||||
context = miCASAOpenSecretStoreCache(&store, ssFlags, NULL);
|
||||
|
||||
/*
|
||||
if (*credentialType == SSCS_CRED_TYPE_BINARY_F)
|
||||
{
|
||||
// first check appSecretID
|
||||
@ -2745,6 +2746,7 @@ miCASAGetCredential
|
||||
miCASACloseSecretStoreCache(context, ssFlags, NULL);
|
||||
return rcode;
|
||||
}
|
||||
*/
|
||||
|
||||
// create a SHS Handle
|
||||
secretHandle = miCASA_CreateSHSHandle();
|
||||
@ -2925,7 +2927,7 @@ miCASASetCredential
|
||||
sscs_Utf8Strcpy(kc.keychainID, SSCS_SESSION_KEY_CHAIN_ID);
|
||||
kc.len = SSCS_S_KC_ID_CHARS;
|
||||
|
||||
|
||||
/*
|
||||
if (credentialType == SSCS_CRED_TYPE_BINARY_F)
|
||||
{
|
||||
binaryCred = (SSCS_BINARY_CREDENTIAL *)credential;
|
||||
@ -2951,6 +2953,7 @@ miCASASetCredential
|
||||
|
||||
}
|
||||
else
|
||||
*/
|
||||
basicCred = (SSCS_BASIC_CREDENTIAL *)credential;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user