summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--channels.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2cdd9997f..bce6a5372 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -89,6 +89,9 @@
89 [channels.c packet.c packet.h serverloop.c] 89 [channels.c packet.c packet.h serverloop.c]
90 use ignore message to simulate a SSH2_MSG_CHANNEL_DATA message 90 use ignore message to simulate a SSH2_MSG_CHANNEL_DATA message
91 use random content in ignore messages. 91 use random content in ignore messages.
92 - markus@cvs.openbsd.org 2001/02/28 21:31:32
93 [channels.c]
94 typo
92 95
9320010304 9620010304
94 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid. 97 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
@@ -4281,4 +4284,4 @@
4281 - Wrote replacements for strlcpy and mkdtemp 4284 - Wrote replacements for strlcpy and mkdtemp
4282 - Released 1.0pre1 4285 - Released 1.0pre1
4283 4286
4284$Id: ChangeLog,v 1.877 2001/03/05 06:28:06 mouring Exp $ 4287$Id: ChangeLog,v 1.878 2001/03/05 06:29:44 mouring Exp $
diff --git a/channels.c b/channels.c
index defe5ecba..bca7268b8 100644
--- a/channels.c
+++ b/channels.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: channels.c,v 1.95 2001/02/28 21:27:48 markus Exp $"); 43RCSID("$OpenBSD: channels.c,v 1.96 2001/02/28 21:31:32 markus Exp $");
44 44
45#include <openssl/rsa.h> 45#include <openssl/rsa.h>
46#include <openssl/dsa.h> 46#include <openssl/dsa.h>
@@ -794,7 +794,7 @@ channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
794 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) { 794 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
795 /* 795 /*
796 * Simulate echo to reduce the impact of 796 * Simulate echo to reduce the impact of
797 * traffic analysis. We need too match the 797 * traffic analysis. We need to match the
798 * size of a SSH2_MSG_CHANNEL_DATA message 798 * size of a SSH2_MSG_CHANNEL_DATA message
799 * (4 byte channel id + data) 799 * (4 byte channel id + data)
800 */ 800 */