diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-06-09 00:18:51 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-06-09 00:18:51 +0000 |
commit | 5ec2645a2d4a5045e587868b3f2ed33ae187f594 (patch) | |
tree | e996715d3738d2926c957986322fb47733c7a794 | |
parent | e6455aee8fe31931f006f390fcbf0e99c1fbaacf (diff) |
- markus@cvs.openbsd.org 2001/05/30 15:20:10
[ssh.c]
merge functions, simplify.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ssh.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -4,6 +4,9 @@ | |||
4 | [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c | 4 | [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c |
5 | packet.c serverloop.c session.c ssh.c ssh1.h] | 5 | packet.c serverloop.c session.c ssh.c ssh1.h] |
6 | channel layer cleanup: merge header files and split .c files | 6 | channel layer cleanup: merge header files and split .c files |
7 | - markus@cvs.openbsd.org 2001/05/30 15:20:10 | ||
8 | [ssh.c] | ||
9 | merge functions, simplify. | ||
7 | 10 | ||
8 | 20010606 | 11 | 20010606 |
9 | - OpenBSD CVS Sync | 12 | - OpenBSD CVS Sync |
@@ -5515,4 +5518,4 @@ | |||
5515 | - Wrote replacements for strlcpy and mkdtemp | 5518 | - Wrote replacements for strlcpy and mkdtemp |
5516 | - Released 1.0pre1 | 5519 | - Released 1.0pre1 |
5517 | 5520 | ||
5518 | $Id: ChangeLog,v 1.1247 2001/06/09 00:17:10 mouring Exp $ | 5521 | $Id: ChangeLog,v 1.1248 2001/06/09 00:18:51 mouring Exp $ |
@@ -39,7 +39,7 @@ | |||
39 | */ | 39 | */ |
40 | 40 | ||
41 | #include "includes.h" | 41 | #include "includes.h" |
42 | RCSID("$OpenBSD: ssh.c,v 1.121 2001/05/30 12:55:13 markus Exp $"); | 42 | RCSID("$OpenBSD: ssh.c,v 1.122 2001/05/30 15:20:10 markus Exp $"); |
43 | 43 | ||
44 | #include <openssl/evp.h> | 44 | #include <openssl/evp.h> |
45 | #include <openssl/err.h> | 45 | #include <openssl/err.h> |
@@ -1095,7 +1095,7 @@ ssh_session2_command(void) | |||
1095 | 1095 | ||
1096 | debug3("ssh_session2_command: channel_new: %d", c->self); | 1096 | debug3("ssh_session2_command: channel_new: %d", c->self); |
1097 | 1097 | ||
1098 | channel_open(c->self); | 1098 | channel_send_open(c->self); |
1099 | channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, | 1099 | channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, |
1100 | ssh_session2_callback, (void *)0); | 1100 | ssh_session2_callback, (void *)0); |
1101 | 1101 | ||