From 55983d89bc51d74975b030b5617647335b54c249 Mon Sep 17 00:00:00 2001 From: David McKnight Date: Wed, 24 Feb 2010 04:14:10 +0000 Subject: [PATCH] [303717] [dstore][ssl] problem accepting certificate chain --- .../dstore/security/wizards/SystemImportCertWizard.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/wizards/SystemImportCertWizard.java b/rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/wizards/SystemImportCertWizard.java index 5625aa65fa2..32f0a13f662 100644 --- a/rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/wizards/SystemImportCertWizard.java +++ b/rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/wizards/SystemImportCertWizard.java @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2000, 2007 IBM Corporation and others. All rights reserved. + * Copyright (c) 2000, 2010 IBM Corporation and others. All rights reserved. * This program and the accompanying materials are made available under the terms * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html @@ -12,6 +12,7 @@ * * Contributors: * Martin Oberhuber (Wind River) - [168870] refactor org.eclipse.rse.core package of the UI plugin + * David Dykstal (IBM) - [303717] [dstore][ssl] problem accepting certificate chain ********************************************************************************/ package org.eclipse.rse.internal.dstore.security.wizards; @@ -115,7 +116,7 @@ public class SystemImportCertWizard if (cert != null) { String alias = _aliasPage.getAlias(); - + alias = alias + "." + Integer.toString(i + 1); // NEW LINE //$NON-NLS-1$ try { KeyStore ks = DStoreKeyStore.getKeyStore(_provider.getKeyStorePath(), _provider.getKeyStorePassword());