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 369809 | Differences between
and this patch

Collapse All | Expand All

(-)miners/org/eclipse/rse/internal/dstore/universal/miners/command/CommandMinerThread.java (-2 / +3 lines)
Lines 30-35 Link Here
30
 *  David McKnight   (IBM)     [302996] [dstore] null checks and performance issue with shell output
30
 *  David McKnight   (IBM)     [302996] [dstore] null checks and performance issue with shell output
31
 *  David McKnight     (IBM)   [308246] [dstore] fix for Bug 287305 breaks on z/OS due to "su" usage
31
 *  David McKnight     (IBM)   [308246] [dstore] fix for Bug 287305 breaks on z/OS due to "su" usage
32
 *  David McKnight   (IBM)     [323262] [dstore] zos shell does not display [ ]  brackets properly
32
 *  David McKnight   (IBM)     [323262] [dstore] zos shell does not display [ ]  brackets properly
33
 *  Noriaki Takatsu  (IBM)     [369767] [multithread][dstore] Invalid Default directory in shell Launch
33
 *******************************************************************************/
34
 *******************************************************************************/
34
35
35
package org.eclipse.rse.internal.dstore.universal.miners.command;
36
package org.eclipse.rse.internal.dstore.universal.miners.command;
Lines 179-186 Link Here
179
			String userHome = null;			
180
			String userHome = null;			
180
			Client client = _dataStore.getClient();
181
			Client client = _dataStore.getClient();
181
			
182
			
182
			if (client != null && !theOS.equals("z/OS")){ //$NON-NLS-1$
183
			if (client != null && theOS.equals("z/OS")){ //$NON-NLS-1$
183
				String clientActualUserId = client.getProperty("user.name");//$NON-NLS-1$
184
				String clientActualUserId = client.getProperty("client.username");//$NON-NLS-1$
184
				String clientUserId = client.getUserid();
185
				String clientUserId = client.getUserid();
185
				
186
				
186
				userHome = client.getProperty("user.home");//$NON-NLS-1$							
187
				userHome = client.getProperty("user.home");//$NON-NLS-1$							

Return to bug 369809