1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +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 f3f1e1f73c
commit 3419daf7e0

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();
}