Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 369808 | Differences between
and this patch

Collapse All | Expand All

(-)miners/org/eclipse/rse/internal/dstore/universal/miners/command/CommandMinerThread.java (-2 / +3 lines)
Lines 33-38 Link Here
33
 *  David McKnight   (IBM)     [318372] [dstore][shells] "export" shell command invalid for certain shells
33
 *  David McKnight   (IBM)     [318372] [dstore][shells] "export" shell command invalid for certain shells
34
 *  David McKnight   (IBM)     [323262] [dstore] zos shell does not display [ ]  brackets properly
34
 *  David McKnight   (IBM)     [323262] [dstore] zos shell does not display [ ]  brackets properly
35
 *  David McKnight   (IBM)     [339741] [dstore][shells] consecutive prompt line is ignored
35
 *  David McKnight   (IBM)     [339741] [dstore][shells] consecutive prompt line is ignored
36
 *  Noriaki Takatsu  (IBM)     [369767] [multithread][dstore] Invalid Default directory in shell Launch
36
 *******************************************************************************/
37
 *******************************************************************************/
37
38
38
package org.eclipse.rse.internal.dstore.universal.miners.command;
39
package org.eclipse.rse.internal.dstore.universal.miners.command;
Lines 187-194 Link Here
187
			String userHome = null;			
188
			String userHome = null;			
188
			Client client = _dataStore.getClient();
189
			Client client = _dataStore.getClient();
189
			
190
			
190
			if (client != null && !theOS.equals("z/OS")){ //$NON-NLS-1$
191
			if (client != null && theOS.equals("z/OS")){ //$NON-NLS-1$
191
				String clientActualUserId = client.getProperty("user.name");//$NON-NLS-1$
192
				String clientActualUserId = client.getProperty("client.username");//$NON-NLS-1$
192
				String clientUserId = client.getUserid();
193
				String clientUserId = client.getUserid();
193
				
194
				
194
				userHome = client.getProperty("user.home");//$NON-NLS-1$							
195
				userHome = client.getProperty("user.home");//$NON-NLS-1$							

Return to bug 369808