mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 05:15:01 +00:00
crypt32: Remove redundant if clause.
This commit is contained in:
parent
9a13e1c70b
commit
c310637f4f
1 changed files with 0 additions and 1 deletions
|
@ -1725,7 +1725,6 @@ static DWORD CRYPT_ChainQuality(const CertificateChain *chain)
|
|||
quality &= ~CHAIN_QUALITY_TRUSTED_ROOT;
|
||||
if (IS_TRUST_ERROR_SET(&chain->context.TrustStatus,
|
||||
CERT_TRUST_IS_PARTIAL_CHAIN))
|
||||
if (chain->context.TrustStatus.dwErrorStatus & CERT_TRUST_IS_PARTIAL_CHAIN)
|
||||
quality &= ~CHAIN_QUALITY_COMPLETE_CHAIN;
|
||||
if (IS_TRUST_ERROR_SET(&chain->context.TrustStatus,
|
||||
CERT_TRUST_IS_NOT_TIME_VALID | CERT_TRUST_IS_NOT_TIME_NESTED))
|
||||
|
|
Loading…
Reference in a new issue