Commit 818634d6 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Not finding an issuer shouldn't cause chain creation to fail.

parent 8698a598
...@@ -544,8 +544,8 @@ static BOOL CRYPT_BuildSimpleChain(HCERTCHAINENGINE hChainEngine, ...@@ -544,8 +544,8 @@ static BOOL CRYPT_BuildSimpleChain(HCERTCHAINENGINE hChainEngine,
} }
else else
{ {
TRACE("Couldn't find issuer, aborting chain creation\n"); TRACE("Couldn't find issuer, halting chain creation\n");
ret = FALSE; break;
} }
} }
if (ret) if (ret)
......
...@@ -1583,7 +1583,7 @@ static ChainCheck chainCheckNoStore[] = { ...@@ -1583,7 +1583,7 @@ static ChainCheck chainCheckNoStore[] = {
{ CERT_TRUST_INVALID_BASIC_CONSTRAINTS | CERT_TRUST_IS_UNTRUSTED_ROOT | { CERT_TRUST_INVALID_BASIC_CONSTRAINTS | CERT_TRUST_IS_UNTRUSTED_ROOT |
CERT_TRUST_IS_NOT_TIME_VALID, 0 }, CERT_TRUST_IS_NOT_TIME_VALID, 0 },
1, simpleStatus8NoStore }, 1, simpleStatus8NoStore },
TODO_CHAIN | TODO_ERROR | TODO_INFO }, TODO_INFO },
}; };
/* Wednesday, Oct 1, 2007 */ /* Wednesday, Oct 1, 2007 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment