[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.39 and 1.40

version 1.39, 2001/12/28 12:14:27 version 1.40, 2001/12/28 14:50:54
Line 125 
Line 125 
 void  void
 kex_finish(Kex *kex)  kex_finish(Kex *kex)
 {  {
         int plen;  
   
         kex_clear_dispatch();          kex_clear_dispatch();
   
         packet_start(SSH2_MSG_NEWKEYS);          packet_start(SSH2_MSG_NEWKEYS);
Line 135 
Line 133 
         debug("SSH2_MSG_NEWKEYS sent");          debug("SSH2_MSG_NEWKEYS sent");
   
         debug("waiting for SSH2_MSG_NEWKEYS");          debug("waiting for SSH2_MSG_NEWKEYS");
         packet_read_expect(&plen, SSH2_MSG_NEWKEYS);          packet_read_expect(SSH2_MSG_NEWKEYS);
         debug("SSH2_MSG_NEWKEYS received");          debug("SSH2_MSG_NEWKEYS received");
   
         kex->done = 1;          kex->done = 1;

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.40