summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-12-31 16:22:32 +1100
committerDamien Miller <djm@mindrot.org>2005-12-31 16:22:32 +1100
commit077b23864f567551dc7147db8ccd69559617976e (patch)
tree0544f3e7e7b1f28d627272c760eb18d8dda9b75f /clientloop.c
parent5eb137c6d11be7db14dc03ea12a74884bebea3e3 (diff)
- reyk@cvs.openbsd.org 2005/12/30 15:56:37
[channels.c channels.h clientloop.c] add channel output filter interface. ok djm@, suggested by markus@
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c
index a71552cad..b76f7cfe0 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -59,7 +59,7 @@
59 */ 59 */
60 60
61#include "includes.h" 61#include "includes.h"
62RCSID("$OpenBSD: clientloop.c,v 1.148 2005/12/28 22:46:06 stevesk Exp $"); 62RCSID("$OpenBSD: clientloop.c,v 1.149 2005/12/30 15:56:37 reyk Exp $");
63 63
64#include "ssh.h" 64#include "ssh.h"
65#include "ssh1.h" 65#include "ssh1.h"
@@ -1386,7 +1386,7 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
1386 session_ident = ssh2_chan_id; 1386 session_ident = ssh2_chan_id;
1387 if (escape_char != SSH_ESCAPECHAR_NONE) 1387 if (escape_char != SSH_ESCAPECHAR_NONE)
1388 channel_register_filter(session_ident, 1388 channel_register_filter(session_ident,
1389 simple_escape_filter); 1389 simple_escape_filter, NULL);
1390 if (session_ident != -1) 1390 if (session_ident != -1)
1391 channel_register_cleanup(session_ident, 1391 channel_register_cleanup(session_ident,
1392 client_channel_closed, 0); 1392 client_channel_closed, 0);