summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-12-21 14:45:46 +1100
committerDamien Miller <djm@mindrot.org>2001-12-21 14:45:46 +1100
commit9f0f5c64bc4b6144e3fed6a7f538f7c21819a492 (patch)
treef79317ab211f59181a61b526f566e9c8cfe70c73 /ssh.c
parent89681214ca2f50a1b1ed6164c3afe1ce14995ffc (diff)
- deraadt@cvs.openbsd.org 2001/12/19 07:18:56
[auth1.c auth2.c auth2-chall.c auth-bsdauth.c auth.c authfile.c auth.h] [auth-krb4.c auth-rhosts.c auth-skey.c bufaux.c canohost.c channels.c] [cipher.c clientloop.c compat.c compress.c deattack.c key.c log.c mac.c] [match.c misc.c nchan.c packet.c readconf.c rijndael.c rijndael.h scard.c] [servconf.c servconf.h serverloop.c session.c sftp.c sftp-client.c] [sftp-glob.c sftp-int.c sftp-server.c ssh-add.c ssh-agent.c ssh.c] [sshconnect1.c sshconnect2.c sshconnect.c sshd.8 sshd.c sshd_config] [ssh-keygen.c sshlogin.c sshpty.c sshtty.c ttymodes.c uidswap.c] basic KNF done while i was looking for something else
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ssh.c b/ssh.c
index 9f4d1178b..aa557eb03 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: ssh.c,v 1.150 2001/11/30 20:39:28 stevesk Exp $"); 42RCSID("$OpenBSD: ssh.c,v 1.151 2001/12/19 07:18:56 deraadt Exp $");
43 43
44#include <openssl/evp.h> 44#include <openssl/evp.h>
45#include <openssl/err.h> 45#include <openssl/err.h>
@@ -485,7 +485,7 @@ again:
485 fwd_host_port); 485 fwd_host_port);
486 else if (opt == 'R') 486 else if (opt == 'R')
487 add_remote_forward(&options, fwd_port, buf, 487 add_remote_forward(&options, fwd_port, buf,
488 fwd_host_port); 488 fwd_host_port);
489 break; 489 break;
490 490
491 case 'D': 491 case 'D':
@@ -1150,8 +1150,8 @@ ssh_session2_open(void)
1150 channel_send_open(c->self); 1150 channel_send_open(c->self);
1151 if (!no_shell_flag) 1151 if (!no_shell_flag)
1152 channel_register_callback(c->self, 1152 channel_register_callback(c->self,
1153 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION, 1153 SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1154 ssh_session2_setup, (void *)0); 1154 ssh_session2_setup, (void *)0);
1155 1155
1156 return c->self; 1156 return c->self;
1157} 1157}