[serverloop.c]
     indent
This commit is contained in:
Kevin Steves 2001-02-15 17:27:15 +00:00
parent 0921454833
commit b7f036fd8c
2 changed files with 10 additions and 3 deletions

View File

@ -38,6 +38,10 @@
ok markus@
- (bal) replaced PATH_MAX in sftp-int.c w/ MAXPATHLEN.
- (djm) Move to Jim's 1.2.0 X11 askpass program
- (stevesk) OpenBSD sync:
- deraadt@cvs.openbsd.org 2001/02/15 01:38:04
[serverloop.c]
indent
20010214
- (djm) Don't try to close PAM session or delete credentials if the
@ -3966,4 +3970,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.771 2001/02/15 04:33:17 djm Exp $
$Id: ChangeLog,v 1.772 2001/02/15 17:27:15 stevesk Exp $

View File

@ -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);