[channels.c]
     better debug
This commit is contained in:
Damien Miller 2001-10-10 15:04:20 +10:00
Родитель 4623a75462
Коммит d3c04b90e4
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -25,6 +25,9 @@
[channels.c channels.h]
avoid possible FD_ISSET overflow for channels established
during channnel_after_select() (used for dynamic channels).
- markus@cvs.openbsd.org 2001/10/08 11:48:57
[channels.c]
better debug
20011007
- (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
@ -6670,4 +6673,4 @@
- Wrote replacements for strlcpy and mkdtemp
- 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"
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 "ssh1.h"
@ -1140,7 +1140,7 @@ channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
} else {
if (c->host_port == 0) {
nextstate = SSH_CHANNEL_DYNAMIC;
rtype = "direct-tcpip";
rtype = "dynamic-tcpip";
} else {
nextstate = SSH_CHANNEL_OPENING;
rtype = "direct-tcpip";