[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.5 and 1.6

version 1.5, 2000/04/14 10:30:31 version 1.6, 2000/05/08 17:42:25
Line 314 
Line 314 
         }          }
         mac->name = name;          mac->name = name;
         mac->mac_len = mac->md->md_size;          mac->mac_len = mac->md->md_size;
         mac->key_len = datafellows ? 16 : mac->mac_len;          mac->key_len = (datafellows & SSH_BUG_HMAC) ? 16 : mac->mac_len;
         mac->key = NULL;          mac->key = NULL;
         mac->enabled = 0;          mac->enabled = 0;
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6