summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-02-15 17:27:15 +0000
committerKevin Steves <stevesk@pobox.com>2001-02-15 17:27:15 +0000
commitb7f036fd8c6c7b2b2e2f7540a94486cf89991b94 (patch)
tree0ff25813624227f142cd8a7c77e42d433ea8268c /serverloop.c
parent09214548336357cccc2c01459ea3f42ff436ad9f (diff)
- deraadt@cvs.openbsd.org 2001/02/15 01:38:04
[serverloop.c] indent
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);