From 57375d4fe98206780c92bd7ffa493013d9bdd0a1 Mon Sep 17 00:00:00 2001 From: David McKnight Date: Thu, 12 Mar 2009 17:43:45 +0000 Subject: [PATCH] [267236] [dstore] Can't connect after a wrong password --- .../rse/connectorservice/dstore/DStoreConnectorService.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/DStoreConnectorService.java b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/DStoreConnectorService.java index 2208af81655..a6980d0fdf2 100644 --- a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/DStoreConnectorService.java +++ b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/DStoreConnectorService.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2002, 2008 IBM Corporation and others. + * Copyright (c) 2002, 2009 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 @@ -35,6 +35,7 @@ * David McKnight (IBM) - [244116] [dstore][daemon][ssl] Connecting to RSE server doesn't complete when the connection is SSL * David McKnight (IBM) - [233160] [dstore] SSL/non-SSL alert are not appropriate * David Dykstal (IBM) [235284] Cancel password change causes problem + * David McKnight (IBM) - [267236] [dstore] Can't connect after a wrong password *******************************************************************************/ package org.eclipse.rse.connectorservice.dstore; @@ -1374,6 +1375,7 @@ public class DStoreConnectorService extends StandardConnectorService implements String serverPort = (String)starter.launch(monitor); if (monitor.isCanceled()) { + _isConnecting = false; SystemMessage msg = createSystemMessage(ICommonMessageIds.MSG_OPERATION_CANCELLED, IStatus.CANCEL, CommonMessages.MSG_OPERATION_CANCELLED); throw new SystemMessageException(msg); }