summaryrefslogtreecommitdiff
path: root/nchan.c
diff options
context:
space:
mode:
Diffstat (limited to 'nchan.c')
-rw-r--r--nchan.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/nchan.c b/nchan.c
index 6871cd86b..8916c13f4 100644
--- a/nchan.c
+++ b/nchan.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: nchan.c,v 1.28 2001/05/31 10:30:16 markus Exp $"); 26RCSID("$OpenBSD: nchan.c,v 1.29 2001/06/23 15:12:19 itojun Exp $");
27 27
28#include "ssh1.h" 28#include "ssh1.h"
29#include "ssh2.h" 29#include "ssh2.h"
@@ -74,14 +74,14 @@ chan_event_fn *chan_obuf_empty = NULL;
74/* 74/*
75 * ACTIONS: should never update the channel states 75 * ACTIONS: should never update the channel states
76 */ 76 */
77static void chan_send_ieof1(Channel *c); 77static void chan_send_ieof1(Channel *);
78static void chan_send_oclose1(Channel *c); 78static void chan_send_oclose1(Channel *);
79static void chan_send_close2(Channel *c); 79static void chan_send_close2(Channel *);
80static void chan_send_eof2(Channel *c); 80static void chan_send_eof2(Channel *);
81 81
82/* helper */ 82/* helper */
83static void chan_shutdown_write(Channel *c); 83static void chan_shutdown_write(Channel *);
84static void chan_shutdown_read(Channel *c); 84static void chan_shutdown_read(Channel *);
85 85
86/* 86/*
87 * SSH1 specific implementation of event functions 87 * SSH1 specific implementation of event functions