[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.115 and 1.116

version 1.115, 2015/12/13 22:42:23 version 1.116, 2016/01/14 16:17:39
Line 46 
Line 46 
 #include "misc.h"  #include "misc.h"
 #include "dispatch.h"  #include "dispatch.h"
 #include "monitor.h"  #include "monitor.h"
 #include "roaming.h"  
   
 #include "ssherr.h"  #include "ssherr.h"
 #include "sshbuf.h"  #include "sshbuf.h"
Line 725 
Line 724 
         } else {          } else {
                 cprop=my;                  cprop=my;
                 sprop=peer;                  sprop=peer;
         }  
   
         /* Check whether server offers roaming */  
         if (!kex->server) {  
                 char *roaming = match_list(KEX_RESUME,  
                     peer[PROPOSAL_KEX_ALGS], NULL);  
   
                 if (roaming) {  
                         kex->roaming = 1;  
                         free(roaming);  
                 }  
         }          }
   
         /* Check whether client supports ext_info_c */          /* Check whether client supports ext_info_c */

Legend:
Removed from v.1.115  
changed lines
  Added in v.1.116