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

Diff for /src/usr.bin/ssh/packet.c between version 1.228 and 1.229

version 1.228, 2016/02/08 10:57:07 version 1.229, 2016/02/17 22:20:14
Line 257 
Line 257 
 int  int
 ssh_packet_is_rekeying(struct ssh *ssh)  ssh_packet_is_rekeying(struct ssh *ssh)
 {  {
         return ssh->state->rekeying ||          return compat20 &&
             (ssh->kex != NULL && ssh->kex->done == 0);              (ssh->state->rekeying || (ssh->kex != NULL && ssh->kex->done == 0));
 }  }
   
 /*  /*

Legend:
Removed from v.1.228  
changed lines
  Added in v.1.229