secur32: Fix the schannel tests crashing on Vista.

This commit is contained in:
Reece Dunn 2008-07-30 21:50:46 +01:00 committed by Alexandre Julliard
parent e413bbeea2
commit 922414b60a
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ static void testAcquireSecurityContext(void)
pFreeCredentialsHandle(&cred);
/* but fails for inbound. */
st = pAcquireCredentialsHandleA(NULL, unisp_name_a, SECPKG_CRED_INBOUND,
NULL, &schanCred, NULL, NULL, NULL, NULL);
NULL, &schanCred, NULL, NULL, &cred, NULL);
ok(st == SEC_E_NO_CREDENTIALS, "Expected SEC_E_NO_CREDENTIALS, got %08x\n",
st);