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

Diff for /src/usr.bin/ssh/kex.c between version 1.100 and 1.101

version 1.100, 2015/01/19 19:52:16 version 1.101, 2015/01/19 20:07:45
Line 190 
Line 190 
 }  }
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  static int
 kex_protocol_error(int type, u_int32_t seq, void *ctxt)  kex_protocol_error(int type, u_int32_t seq, void *ctxt)
 {  {
         error("Hm, kex protocol error: type %d seq %u", type, seq);          error("Hm, kex protocol error: type %d seq %u", type, seq);
           return 0;
 }  }
   
 static void  static void
Line 262 
Line 263 
 }  }
   
 /* ARGSUSED */  /* ARGSUSED */
 void  int
 kex_input_kexinit(int type, u_int32_t seq, void *ctxt)  kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
 {  {
         const char *ptr;          const char *ptr;
Line 297 
Line 298 
         packet_check_eom();          packet_check_eom();
   
         kex_kexinit_finish(kex);          kex_kexinit_finish(kex);
           return 0;
 }  }
   
 void  void

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.101