mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-27 03:43:05 +00:00
- djm@cvs.openbsd.org 2010/01/12 00:59:29
[roaming_common.c] delete with extreme prejudice a debug() that fired with every keypress; ok dtucker deraadt
This commit is contained in:
parent
e371a13238
commit
c6cc90b465
@ -23,6 +23,10 @@
|
|||||||
[monitor_fdpass.c]
|
[monitor_fdpass.c]
|
||||||
avoid spinning when fd passing on nonblocking sockets by calling poll()
|
avoid spinning when fd passing on nonblocking sockets by calling poll()
|
||||||
in the EINTR/EAGAIN path, much like we do in atomicio; ok dtucker@
|
in the EINTR/EAGAIN path, much like we do in atomicio; ok dtucker@
|
||||||
|
- djm@cvs.openbsd.org 2010/01/12 00:59:29
|
||||||
|
[roaming_common.c]
|
||||||
|
delete with extreme prejudice a debug() that fired with every keypress;
|
||||||
|
ok dtucker deraadt
|
||||||
|
|
||||||
20100110
|
20100110
|
||||||
- (dtucker) [configure.ac misc.c readconf.c servconf.c ssh-keyscan.c]
|
- (dtucker) [configure.ac misc.c readconf.c servconf.c ssh-keyscan.c]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: roaming_common.c,v 1.7 2009/12/06 23:53:45 djm Exp $ */
|
/* $OpenBSD: roaming_common.c,v 1.8 2010/01/12 00:59:29 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2004-2009 AppGate Network Security AB
|
* Copyright (c) 2004-2009 AppGate Network Security AB
|
||||||
*
|
*
|
||||||
@ -145,8 +145,6 @@ roaming_write(int fd, const void *buf, size_t count, int *cont)
|
|||||||
if (out_buf_size > 0)
|
if (out_buf_size > 0)
|
||||||
buf_append(buf, ret);
|
buf_append(buf, ret);
|
||||||
}
|
}
|
||||||
debug3("Wrote %ld bytes for a total of %llu", (long)ret,
|
|
||||||
(unsigned long long)write_bytes);
|
|
||||||
if (out_buf_size > 0 &&
|
if (out_buf_size > 0 &&
|
||||||
(ret == 0 || (ret == -1 && errno == EPIPE))) {
|
(ret == 0 || (ret == -1 && errno == EPIPE))) {
|
||||||
if (wait_for_roaming_reconnect() != 0) {
|
if (wait_for_roaming_reconnect() != 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user