summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/serverloop.c b/serverloop.c
index 8fc94db45..d59de8622 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: serverloop.c,v 1.47 2001/02/08 23:11:42 dugsong Exp $"); 38RCSID("$OpenBSD: serverloop.c,v 1.48 2001/02/15 08:38:04 deraadt Exp $");
39 39
40#include "xmalloc.h" 40#include "xmalloc.h"
41#include "packet.h" 41#include "packet.h"
@@ -340,7 +340,10 @@ process_output(fd_set * writeset)
340 /* Successful write. */ 340 /* Successful write. */
341 if (tcgetattr(fdin, &tio) == 0 && 341 if (tcgetattr(fdin, &tio) == 0 &&
342 !(tio.c_lflag & ECHO)) { 342 !(tio.c_lflag & ECHO)) {
343 /* Simulate echo to reduce the impact of traffic analysis. */ 343 /*
344 * Simulate echo to reduce the impact of
345 * traffic analysis
346 */
344 packet_start(SSH_MSG_IGNORE); 347 packet_start(SSH_MSG_IGNORE);
345 memset(buffer_ptr(&stdin_buffer), 0, len); 348 memset(buffer_ptr(&stdin_buffer), 0, len);
346 packet_put_string(buffer_ptr(&stdin_buffer), len); 349 packet_put_string(buffer_ptr(&stdin_buffer), len);