[BACK]Return to ssh-keyscan.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/ssh-keyscan.c between version 1.5 and 1.6

version 1.5, 2000/12/19 22:48:08 version 1.6, 2000/12/19 23:17:58
Line 45 
Line 45 
  * associated with file descriptor n is held in fdcon[n].   * associated with file descriptor n is held in fdcon[n].
  */   */
 typedef struct Connection {  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_UNUSED 0             /* File descriptor unused */
 #define CS_CON 1                /* Waiting to connect/read greeting */  #define CS_CON 1                /* Waiting to connect/read greeting */
 #define CS_SIZE 2               /* Waiting to read initial packet size */  #define CS_SIZE 2               /* Waiting to read initial packet size */
Line 75 
Line 75 
   
 typedef struct {  typedef struct {
         char *buf;          char *buf;
         unsigned int size;          u_int size;
         int lineno;          int lineno;
         const char *filename;          const char *filename;
         FILE *stream;          FILE *stream;

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6