[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.240 and 1.241

version 1.240, 2016/09/28 20:32:42 version 1.241, 2016/09/28 21:44:52
Line 954 
Line 954 
         /* explicit_bzero(enc->iv,  enc->block_size);          /* explicit_bzero(enc->iv,  enc->block_size);
            explicit_bzero(enc->key, enc->key_len);             explicit_bzero(enc->key, enc->key_len);
            explicit_bzero(mac->key, mac->key_len); */             explicit_bzero(mac->key, mac->key_len); */
         if (comp->type == COMP_DELAYED && state->after_authentication &&          if ((comp->type == COMP_ZLIB ||
             comp->enabled == 0) {              (comp->type == COMP_DELAYED &&
                state->after_authentication)) && comp->enabled == 0) {
                 if ((r = ssh_packet_init_compression(ssh)) < 0)                  if ((r = ssh_packet_init_compression(ssh)) < 0)
                         return r;                          return r;
                 if (mode == MODE_OUT) {                  if (mode == MODE_OUT) {

Legend:
Removed from v.1.240  
changed lines
  Added in v.1.241