* Minor fixes

This commit is contained in:
Bryan Ashby 2015-06-21 21:11:11 -06:00
parent 2c8ce36154
commit 45aa97071e
2 changed files with 6 additions and 2 deletions

View file

@ -537,11 +537,11 @@ TelnetClient.prototype.handleDontCommand = function(evt) {
};
TelnetClient.prototype.setTermType = function(ttype) {
this.term.env['TERM'] = ttype;
this.term.env.TERM = ttype;
this.term.termType = ttype;
Log.debug( { termType : ttype }, 'Set terminal type');
}
};
TelnetClient.prototype.handleSbCommand = function(evt) {
var self = this;