Skip to content

Commit 36b482e

Browse files
committed
fixed != == typo
1 parent 2218e3d commit 36b482e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TLS-Server-Scanner/src/main/java/de/rub/nds/tlsscanner/serverscanner/probe/certificate/CertificateReportGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ private static void setRevoked(CertificateReport report, org.bouncycastle.asn1.x
238238
TrustAnchorManager trustAnchorManager = TrustAnchorManager.getInstance();
239239
X509Certificate x509cert = null;
240240
try {
241-
if (trustAnchorManager.isInitialized()) {
241+
if (!trustAnchorManager.isInitialized()) {
242242
return;
243243
}
244244
x509cert = new X509CertificateObject(cert);

0 commit comments

Comments
 (0)