diff options
author | 2001-02-15 08:38:04 +0000 | |
---|---|---|
committer | 2001-02-15 08:38:04 +0000 | |
commit | 572c14eae227bc8c70cc54f5ab66355456ab9d5a (patch) | |
tree | a5a477c50ce2405dc2c9f235067278407acf7dec /usr.bin/ssh/serverloop.c | |
parent | Xr siop 4 (diff) | |
download | wireguard-openbsd-572c14eae227bc8c70cc54f5ab66355456ab9d5a.tar.xz wireguard-openbsd-572c14eae227bc8c70cc54f5ab66355456ab9d5a.zip |
indent
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-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); |