=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/ssh-keyscan.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/ssh/ssh-keyscan.c 2000/12/19 22:48:08 1.5 +++ src/usr.bin/ssh/ssh-keyscan.c 2000/12/19 23:17:58 1.6 @@ -8,7 +8,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keyscan.c,v 1.5 2000/12/19 22:48:08 markus Exp $"); +RCSID("$OpenBSD: ssh-keyscan.c,v 1.6 2000/12/19 23:17:58 markus Exp $"); #include #include @@ -45,7 +45,7 @@ * associated with file descriptor n is held in fdcon[n]. */ typedef struct Connection { - unsigned char c_status; /* State of connection on this file desc. */ + u_char c_status; /* State of connection on this file desc. */ #define CS_UNUSED 0 /* File descriptor unused */ #define CS_CON 1 /* Waiting to connect/read greeting */ #define CS_SIZE 2 /* Waiting to read initial packet size */ @@ -75,7 +75,7 @@ typedef struct { char *buf; - unsigned int size; + u_int size; int lineno; const char *filename; FILE *stream;