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

Diff for /src/usr.bin/ssh/readconf.c between version 1.302 and 1.303

version 1.302, 2018/11/23 05:08:07 version 1.303, 2019/02/23 08:20:43
Line 2105 
Line 2105 
                     defaults, all)) != 0) \                      defaults, all)) != 0) \
                         fatal("%s: %s: %s", __func__, #what, ssh_err(r)); \                          fatal("%s: %s: %s", __func__, #what, ssh_err(r)); \
         } while (0)          } while (0)
         ASSEMBLE(ciphers, KEX_SERVER_ENCRYPT, all_cipher);          ASSEMBLE(ciphers, KEX_CLIENT_ENCRYPT, all_cipher);
         ASSEMBLE(macs, KEX_SERVER_MAC, all_mac);          ASSEMBLE(macs, KEX_CLIENT_MAC, all_mac);
         ASSEMBLE(kex_algorithms, KEX_SERVER_KEX, all_kex);          ASSEMBLE(kex_algorithms, KEX_CLIENT_KEX, all_kex);
         ASSEMBLE(hostbased_key_types, KEX_DEFAULT_PK_ALG, all_key);          ASSEMBLE(hostbased_key_types, KEX_DEFAULT_PK_ALG, all_key);
         ASSEMBLE(pubkey_key_types, KEX_DEFAULT_PK_ALG, all_key);          ASSEMBLE(pubkey_key_types, KEX_DEFAULT_PK_ALG, all_key);
         ASSEMBLE(ca_sign_algorithms, SSH_ALLOWED_CA_SIGALGS, all_sig);          ASSEMBLE(ca_sign_algorithms, SSH_ALLOWED_CA_SIGALGS, all_sig);

Legend:
Removed from v.1.302  
changed lines
  Added in v.1.303