1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[320624] [dstore] shell < and > sequence conversion not being applied to thread

This commit is contained in:
David McKnight 2010-07-22 13:26:24 +00:00
parent 43d1836c73
commit b7e75791b3

View file

@ -20,6 +20,7 @@
* David McKnight (IBM) - [226561] [apidoc] Add API markup to RSE Javadocs where extend / implement is allowed
* David McKnight (IBM) - [286671] Dstore shell service interprets < and > sequences - cmd descriptor to identify ability
* David McKnight (IBM) [312415] [dstore] shell service interprets < and > sequences - handle old client/new server case
* David McKnight (IBM) [320624] [dstore] shell < and > sequence conversion not being applied to thread
*******************************************************************************/
package org.eclipse.rse.dstore.universal.miners;
@ -233,8 +234,9 @@ public class CommandMiner extends Miner
}
else if (name.equals("C_CHAR_CONVERSION")) //$NON-NLS-1$
{
DataElement cmdStatus = getCommandStatus(subject);
DataElement cmdStatus = getCommandArgument(theElement, 0);
CommandMinerThread theThread = (CommandMinerThread) _threads.get(cmdStatus.getAttribute(DE.A_ID));
if (theThread != null)
{
theThread._supportsCharConversion = true;