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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.195 and 1.196

version 1.195, 2013/05/10 03:40:07 version 1.196, 2013/05/16 02:00:34
Line 191 
Line 191 
         if (options.kex_algorithms != NULL)          if (options.kex_algorithms != NULL)
                 myproposal[PROPOSAL_KEX_ALGS] = options.kex_algorithms;                  myproposal[PROPOSAL_KEX_ALGS] = options.kex_algorithms;
   
         if (options.rekey_limit)          if (options.rekey_limit || options.rekey_interval)
                 packet_set_rekey_limit((u_int32_t)options.rekey_limit);                  packet_set_rekey_limits((u_int32_t)options.rekey_limit,
                       (time_t)options.rekey_interval);
   
         /* start key exchange */          /* start key exchange */
         kex = kex_setup(myproposal);          kex = kex_setup(myproposal);

Legend:
Removed from v.1.195  
changed lines
  Added in v.1.196