summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/readconf.c b/readconf.c
index 7331ef5ad..a45667465 100644
--- a/readconf.c
+++ b/readconf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.c,v 1.302 2018/11/23 05:08:07 djm Exp $ */ 1/* $OpenBSD: readconf.c,v 1.303 2019/02/23 08:20:43 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2122,9 +2122,9 @@ fill_default_options(Options * options)
2122 defaults, all)) != 0) \ 2122 defaults, all)) != 0) \
2123 fatal("%s: %s: %s", __func__, #what, ssh_err(r)); \ 2123 fatal("%s: %s: %s", __func__, #what, ssh_err(r)); \
2124 } while (0) 2124 } while (0)
2125 ASSEMBLE(ciphers, KEX_SERVER_ENCRYPT, all_cipher); 2125 ASSEMBLE(ciphers, KEX_CLIENT_ENCRYPT, all_cipher);
2126 ASSEMBLE(macs, KEX_SERVER_MAC, all_mac); 2126 ASSEMBLE(macs, KEX_CLIENT_MAC, all_mac);
2127 ASSEMBLE(kex_algorithms, KEX_SERVER_KEX, all_kex); 2127 ASSEMBLE(kex_algorithms, KEX_CLIENT_KEX, all_kex);
2128 ASSEMBLE(hostbased_key_types, KEX_DEFAULT_PK_ALG, all_key); 2128 ASSEMBLE(hostbased_key_types, KEX_DEFAULT_PK_ALG, all_key);
2129 ASSEMBLE(pubkey_key_types, KEX_DEFAULT_PK_ALG, all_key); 2129 ASSEMBLE(pubkey_key_types, KEX_DEFAULT_PK_ALG, all_key);
2130 ASSEMBLE(ca_sign_algorithms, SSH_ALLOWED_CA_SIGALGS, all_sig); 2130 ASSEMBLE(ca_sign_algorithms, SSH_ALLOWED_CA_SIGALGS, all_sig);