summaryrefslogtreecommitdiffstats
path: root/channels.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-25 23:15:30 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-25 23:15:30 +0000
commitdaa2179bd0ea772be09b92ebce092d4d03ede4c2 (patch)
tree81747c117a9e6fa3dc588ef2e89b420615d549c0 /channels.c
parent7039653b7bd4aede504611eb8db875163daeda03 (diff)
- markus@cvs.openbsd.org 2002/06/23 21:34:07
[channels.c] tcode is u_int
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/channels.c b/channels.c
index b85ee577..fede9eb9 100644
--- a/channels.c
+++ b/channels.c
@@ -39,7 +39,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: channels.c,v 1.176 2002/06/23 21:06:41 deraadt Exp $");
+RCSID("$OpenBSD: channels.c,v 1.177 2002/06/23 21:34:07 markus Exp $");
#include "ssh.h"
#include "ssh1.h"
@@ -1717,9 +1717,8 @@ void
channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
{
int id;
- int tcode;
char *data;
- u_int data_len;
+ u_int data_len, tcode;
Channel *c;
/* Get the channel number and verify it. */