mirror of git://anongit.mindrot.org/openssh.git
- markus@cvs.openbsd.org 2002/06/23 21:34:07
[channels.c] tcode is u_int
This commit is contained in:
parent
7039653b7b
commit
daa2179bd0
|
@ -1,5 +1,9 @@
|
|||
20020626
|
||||
- (stevesk) [monitor.c] remove duplicate proto15 dispatch entry for PAM
|
||||
- (bal) OpenBSD CVS Sync
|
||||
- markus@cvs.openbsd.org 2002/06/23 21:34:07
|
||||
[channels.c]
|
||||
tcode is u_int
|
||||
|
||||
20020625
|
||||
- (stevesk) [INSTALL acconfig.h configure.ac defines.h] remove --with-rsh
|
||||
|
@ -1099,4 +1103,4 @@
|
|||
- (stevesk) entropy.c: typo in debug message
|
||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||
|
||||
$Id: ChangeLog,v 1.2273 2002/06/25 22:43:19 stevesk Exp $
|
||||
$Id: ChangeLog,v 1.2274 2002/06/25 23:15:30 mouring Exp $
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Reference in New Issue