parent
0921454833
commit
b7f036fd8c
|
@ -38,6 +38,10 @@
|
||||||
ok markus@
|
ok markus@
|
||||||
- (bal) replaced PATH_MAX in sftp-int.c w/ MAXPATHLEN.
|
- (bal) replaced PATH_MAX in sftp-int.c w/ MAXPATHLEN.
|
||||||
- (djm) Move to Jim's 1.2.0 X11 askpass program
|
- (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
|
20010214
|
||||||
- (djm) Don't try to close PAM session or delete credentials if the
|
- (djm) Don't try to close PAM session or delete credentials if the
|
||||||
|
@ -3966,4 +3970,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- 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 $
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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 "xmalloc.h"
|
||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
|
@ -340,7 +340,10 @@ process_output(fd_set * writeset)
|
||||||
/* Successful write. */
|
/* Successful write. */
|
||||||
if (tcgetattr(fdin, &tio) == 0 &&
|
if (tcgetattr(fdin, &tio) == 0 &&
|
||||||
!(tio.c_lflag & ECHO)) {
|
!(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);
|
packet_start(SSH_MSG_IGNORE);
|
||||||
memset(buffer_ptr(&stdin_buffer), 0, len);
|
memset(buffer_ptr(&stdin_buffer), 0, len);
|
||||||
packet_put_string(buffer_ptr(&stdin_buffer), len);
|
packet_put_string(buffer_ptr(&stdin_buffer), len);
|
||||||
|
|
Loading…
Reference in New Issue