diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | servconf.c | 4 |
2 files changed, 6 insertions, 1 deletions
@@ -15,6 +15,9 @@ | |||
15 | - jmc@cvs.openbsd.org 2010/08/31 21:14:58 | 15 | - jmc@cvs.openbsd.org 2010/08/31 21:14:58 |
16 | [ssh.1] | 16 | [ssh.1] |
17 | small text tweak to accommodate previous; | 17 | small text tweak to accommodate previous; |
18 | - naddy@cvs.openbsd.org 2010/09/01 15:21:35 | ||
19 | [servconf.c] | ||
20 | pick up ECDSA host key by default; ok djm@ | ||
18 | 21 | ||
19 | 20100831 | 22 | 20100831 |
20 | - OpenBSD CVS Sync | 23 | - OpenBSD CVS Sync |
diff --git a/servconf.c b/servconf.c index 986a5b92f..def6b716a 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: servconf.c,v 1.209 2010/06/22 04:22:59 djm Exp $ */ | 1 | /* $OpenBSD: servconf.c,v 1.210 2010/09/01 15:21:35 naddy Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
4 | * All rights reserved | 4 | * All rights reserved |
@@ -154,6 +154,8 @@ fill_default_server_options(ServerOptions *options) | |||
154 | _PATH_HOST_RSA_KEY_FILE; | 154 | _PATH_HOST_RSA_KEY_FILE; |
155 | options->host_key_files[options->num_host_key_files++] = | 155 | options->host_key_files[options->num_host_key_files++] = |
156 | _PATH_HOST_DSA_KEY_FILE; | 156 | _PATH_HOST_DSA_KEY_FILE; |
157 | options->host_key_files[options->num_host_key_files++] = | ||
158 | _PATH_HOST_ECDSA_KEY_FILE; | ||
157 | } | 159 | } |
158 | } | 160 | } |
159 | /* No certificates by default */ | 161 | /* No certificates by default */ |