openjdk-21/Backport-JDK-8331391-Enhance-the-keytool-code-by-inv.patch
2024-12-06 18:49:00 +08:00

37 lines
1.5 KiB
Diff

Subject: Backport JDK-8331391 Enhance the keytool code by invoking the buildTrustedCerts method for essential options
---
.../share/classes/sun/security/tools/keytool/Main.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/java.base/share/classes/sun/security/tools/keytool/Main.java b/src/java.base/share/classes/sun/security/tools/keytool/Main.java
index edb0b4195..3e2e5dec2 100644
--- a/src/java.base/share/classes/sun/security/tools/keytool/Main.java
+++ b/src/java.base/share/classes/sun/security/tools/keytool/Main.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -1119,7 +1119,6 @@ public final class Main {
}
}
- KeyStore cakstore = buildTrustedCerts();
// -trustcacerts can be specified on -importcert, -printcert or -printcrl.
// Reset it so that warnings on CA cert will remain for other command.
if (command != IMPORTCERT && command != PRINTCERT
@@ -1128,6 +1127,7 @@ public final class Main {
}
if (trustcacerts) {
+ KeyStore cakstore = buildTrustedCerts();
if (cakstore != null) {
caks = cakstore;
} else {
--
2.33.0