]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2002/06/23 21:34:07
authormouring <mouring>
Tue, 25 Jun 2002 23:15:30 +0000 (23:15 +0000)
committermouring <mouring>
Tue, 25 Jun 2002 23:15:30 +0000 (23:15 +0000)
     [channels.c]
     tcode is u_int

ChangeLog
channels.c

index 8175e3f552a12f5e46bf5c0d8e4c4c14ec0e35f3..4207c96f110fedf72f4049276948f3799ed3afbd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index b85ee57708d40aa7dc08b9a670bef4782b12b8dc..fede9eb9375206cf097687a0c01cdb0a3208accc 100644 (file)
@@ -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. */
This page took 0.041646 seconds and 5 git commands to generate.