Skip to content

Commit

Permalink
Not sending EOF on OutputStream close (reopens #143)
Browse files Browse the repository at this point in the history
  • Loading branch information
hierynomus committed Jan 21, 2015
1 parent e348f69 commit 4a90f99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public synchronized void close()
if (!closed) {
try {
buffer.flush(false);
trans.write(new SSHPacket(Message.CHANNEL_EOF).putUInt32(chan.getRecipient()));
// trans.write(new SSHPacket(Message.CHANNEL_EOF).putUInt32(chan.getRecipient()));
} finally {
closed = true;
}
Expand Down

0 comments on commit 4a90f99

Please sign in to comment.