diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-25 23:15:30 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-06-25 23:15:30 +0000 |
commit | daa2179bd0ea772be09b92ebce092d4d03ede4c2 (patch) | |
tree | 81747c117a9e6fa3dc588ef2e89b420615d549c0 | |
parent | 7039653b7bd4aede504611eb8db875163daeda03 (diff) |
- markus@cvs.openbsd.org 2002/06/23 21:34:07
[channels.c]
tcode is u_int
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | channels.c | 5 |
2 files changed, 7 insertions, 4 deletions
@@ -1,5 +1,9 @@ | |||
1 | 20020626 | 1 | 20020626 |
2 | - (stevesk) [monitor.c] remove duplicate proto15 dispatch entry for PAM | 2 | - (stevesk) [monitor.c] remove duplicate proto15 dispatch entry for PAM |
3 | - (bal) OpenBSD CVS Sync | ||
4 | - markus@cvs.openbsd.org 2002/06/23 21:34:07 | ||
5 | [channels.c] | ||
6 | tcode is u_int | ||
3 | 7 | ||
4 | 20020625 | 8 | 20020625 |
5 | - (stevesk) [INSTALL acconfig.h configure.ac defines.h] remove --with-rsh | 9 | - (stevesk) [INSTALL acconfig.h configure.ac defines.h] remove --with-rsh |
@@ -1099,4 +1103,4 @@ | |||
1099 | - (stevesk) entropy.c: typo in debug message | 1103 | - (stevesk) entropy.c: typo in debug message |
1100 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 1104 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
1101 | 1105 | ||
1102 | $Id: ChangeLog,v 1.2273 2002/06/25 22:43:19 stevesk Exp $ | 1106 | $Id: ChangeLog,v 1.2274 2002/06/25 23:15:30 mouring Exp $ |
diff --git a/channels.c b/channels.c index b85ee5770..fede9eb93 100644 --- a/channels.c +++ b/channels.c | |||
@@ -39,7 +39,7 @@ | |||
39 | */ | 39 | */ |
40 | 40 | ||
41 | #include "includes.h" | 41 | #include "includes.h" |
42 | RCSID("$OpenBSD: channels.c,v 1.176 2002/06/23 21:06:41 deraadt Exp $"); | 42 | RCSID("$OpenBSD: channels.c,v 1.177 2002/06/23 21:34:07 markus Exp $"); |
43 | 43 | ||
44 | #include "ssh.h" | 44 | #include "ssh.h" |
45 | #include "ssh1.h" | 45 | #include "ssh1.h" |
@@ -1717,9 +1717,8 @@ void | |||
1717 | channel_input_extended_data(int type, u_int32_t seq, void *ctxt) | 1717 | channel_input_extended_data(int type, u_int32_t seq, void *ctxt) |
1718 | { | 1718 | { |
1719 | int id; | 1719 | int id; |
1720 | int tcode; | ||
1721 | char *data; | 1720 | char *data; |
1722 | u_int data_len; | 1721 | u_int data_len, tcode; |
1723 | Channel *c; | 1722 | Channel *c; |
1724 | 1723 | ||
1725 | /* Get the channel number and verify it. */ | 1724 | /* Get the channel number and verify it. */ |