mirror of git://anongit.mindrot.org/openssh.git
- markus@cvs.openbsd.org 2001/05/30 15:20:10
[ssh.c] merge functions, simplify.
This commit is contained in:
parent
e6455aee8f
commit
5ec2645a2d
|
@ -4,6 +4,9 @@
|
||||||
[auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c
|
[auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c
|
||||||
packet.c serverloop.c session.c ssh.c ssh1.h]
|
packet.c serverloop.c session.c ssh.c ssh1.h]
|
||||||
channel layer cleanup: merge header files and split .c files
|
channel layer cleanup: merge header files and split .c files
|
||||||
|
- markus@cvs.openbsd.org 2001/05/30 15:20:10
|
||||||
|
[ssh.c]
|
||||||
|
merge functions, simplify.
|
||||||
|
|
||||||
20010606
|
20010606
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
|
@ -5515,4 +5518,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1247 2001/06/09 00:17:10 mouring Exp $
|
$Id: ChangeLog,v 1.1248 2001/06/09 00:18:51 mouring Exp $
|
||||||
|
|
4
ssh.c
4
ssh.c
|
@ -39,7 +39,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: ssh.c,v 1.121 2001/05/30 12:55:13 markus Exp $");
|
RCSID("$OpenBSD: ssh.c,v 1.122 2001/05/30 15:20:10 markus Exp $");
|
||||||
|
|
||||||
#include <openssl/evp.h>
|
#include <openssl/evp.h>
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
|
@ -1095,7 +1095,7 @@ ssh_session2_command(void)
|
||||||
|
|
||||||
debug3("ssh_session2_command: channel_new: %d", c->self);
|
debug3("ssh_session2_command: channel_new: %d", c->self);
|
||||||
|
|
||||||
channel_open(c->self);
|
channel_send_open(c->self);
|
||||||
channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
|
channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
|
||||||
ssh_session2_callback, (void *)0);
|
ssh_session2_callback, (void *)0);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue