diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-02-15 08:38:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-02-15 08:38:05 +0000 |
commit | 4ab9ca6c1de09a5a7987fd2f9afeebab44299881 (patch) | |
tree | 10a981d42d38790160456063876bb7a2420acd9f | |
parent | 7ba88995bf94c11032a3ed193466571a39f76aa4 (diff) |
indent
-rw-r--r-- | usr.bin/ssh/serverloop.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index a0bc3158318..d45dd888a68 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: serverloop.c,v 1.47 2001/02/08 23:11:42 dugsong Exp $"); +RCSID("$OpenBSD: serverloop.c,v 1.48 2001/02/15 08:38:04 deraadt Exp $"); #include "xmalloc.h" #include "packet.h" @@ -340,7 +340,10 @@ process_output(fd_set * writeset) /* Successful write. */ if (tcgetattr(fdin, &tio) == 0 && !(tio.c_lflag & ECHO)) { - /* Simulate echo to reduce the impact of traffic analysis. */ + /* + * Simulate echo to reduce the impact of + * traffic analysis + */ packet_start(SSH_MSG_IGNORE); memset(buffer_ptr(&stdin_buffer), 0, len); packet_put_string(buffer_ptr(&stdin_buffer), len); |