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

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.164 and 1.165

version 1.164, 2005/06/06 11:20:36 version 1.165, 2005/06/17 02:44:33
Line 398 
Line 398 
 ssh_exchange_identification(void)  ssh_exchange_identification(void)
 {  {
         char buf[256], remote_version[256];     /* must be same size! */          char buf[256], remote_version[256];     /* must be same size! */
         int remote_major, remote_minor, i, mismatch;          int remote_major, remote_minor, mismatch;
         int connection_in = packet_get_connection_in();          int connection_in = packet_get_connection_in();
         int connection_out = packet_get_connection_out();          int connection_out = packet_get_connection_out();
         int minor1 = PROTOCOL_MINOR_1;          int minor1 = PROTOCOL_MINOR_1;
           u_int i;
   
         /* Read other side's version identification. */          /* Read other side's version identification. */
         for (;;) {          for (;;) {

Legend:
Removed from v.1.164  
changed lines
  Added in v.1.165