Skip to content

Commit

Permalink
Fix problems with dumb terminals not being properly handled
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Jan 25, 2018
1 parent 3ac6345 commit e8bc984
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ private Terminal doBuild() throws IOException {
Log.warn("Unable to create a system terminal, creating a dumb terminal (enable debug logging for more information)");
}
}
return new DumbTerminal(name, type != null ? type : Terminal.TYPE_DUMB,
return new DumbTerminal(name, Terminal.TYPE_DUMB,
new FileInputStream(FileDescriptor.in),
new FileOutputStream(FileDescriptor.out),
encoding, signalHandler);
Expand Down

0 comments on commit e8bc984

Please sign in to comment.