1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 11:25:35 +02:00

[288254][telnet] local echo is always disabled. Apply Patch from David Sciamma (Anyware Tech).

This commit is contained in:
Martin Oberhuber 2009-09-15 20:55:53 +00:00
parent de709aa864
commit 04c3553c2d

View file

@ -79,7 +79,7 @@ public class TelnetConnector extends TerminalConnectorImpl {
cleanSocket();
}
public boolean isLocalEcho() {
if(fTelnetConnection!=null)
if(fTelnetConnection==null)
return false;
return fTelnetConnection.localEcho();
}