parent
4623a75462
commit
d3c04b90e4
|
@ -25,6 +25,9 @@
|
||||||
[channels.c channels.h]
|
[channels.c channels.h]
|
||||||
avoid possible FD_ISSET overflow for channels established
|
avoid possible FD_ISSET overflow for channels established
|
||||||
during channnel_after_select() (used for dynamic channels).
|
during channnel_after_select() (used for dynamic channels).
|
||||||
|
- markus@cvs.openbsd.org 2001/10/08 11:48:57
|
||||||
|
[channels.c]
|
||||||
|
better debug
|
||||||
|
|
||||||
20011007
|
20011007
|
||||||
- (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
|
- (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
|
||||||
|
@ -6670,4 +6673,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1592 2001/10/10 05:03:58 djm Exp $
|
$Id: ChangeLog,v 1.1593 2001/10/10 05:04:20 djm Exp $
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: channels.c,v 1.137 2001/10/07 17:49:40 markus Exp $");
|
RCSID("$OpenBSD: channels.c,v 1.138 2001/10/08 11:48:57 markus Exp $");
|
||||||
|
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
#include "ssh1.h"
|
#include "ssh1.h"
|
||||||
|
@ -1140,7 +1140,7 @@ channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
|
||||||
} else {
|
} else {
|
||||||
if (c->host_port == 0) {
|
if (c->host_port == 0) {
|
||||||
nextstate = SSH_CHANNEL_DYNAMIC;
|
nextstate = SSH_CHANNEL_DYNAMIC;
|
||||||
rtype = "direct-tcpip";
|
rtype = "dynamic-tcpip";
|
||||||
} else {
|
} else {
|
||||||
nextstate = SSH_CHANNEL_OPENING;
|
nextstate = SSH_CHANNEL_OPENING;
|
||||||
rtype = "direct-tcpip";
|
rtype = "direct-tcpip";
|
||||||
|
|
Loading…
Reference in New Issue