From 27dbca0cc8c01570a1ff0e638198f122fec7d6df Mon Sep 17 00:00:00 2001 From: joe Date: Thu, 2 May 2024 08:24:28 -0400 Subject: [PATCH] Check if PKI has been installed and configured --- .../equinox/internal/p2/transport/ecf/RepositoryTransport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.eclipse.equinox.p2.transport.ecf/src/org/eclipse/equinox/internal/p2/transport/ecf/RepositoryTransport.java b/bundles/org.eclipse.equinox.p2.transport.ecf/src/org/eclipse/equinox/internal/p2/transport/ecf/RepositoryTransport.java index 9d77a4469..2d4e85e0d 100644 --- a/bundles/org.eclipse.equinox.p2.transport.ecf/src/org/eclipse/equinox/internal/p2/transport/ecf/RepositoryTransport.java +++ b/bundles/org.eclipse.equinox.p2.transport.ecf/src/org/eclipse/equinox/internal/p2/transport/ecf/RepositoryTransport.java @@ -101,7 +101,7 @@ public IStatus download(URI toDownload, OutputStream target, IProgressMonitor mo boolean useJREHttp = false; try { // DELMARVA - is org.eclipse.core.pki installed and configured - if (SSLContext.getDefault().getProvider().getName().contains("PKCS")) { //$NON-NLS-1$ + if (SSLContext.getDefault().getProvider().getName().contains("TLS")) { //$NON-NLS-1$ useJREHttp = true; Activator.getDefault().useJREHttpClient(); }