summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
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}