[servconf.c]
     pick up ECDSA host key by default; ok djm@
This commit is contained in:
Damien Miller 2010-09-10 11:15:33 +10:00
parent d442790292
commit e13cadf41b
2 changed files with 6 additions and 1 deletions

View File

@ -15,6 +15,9 @@
- jmc@cvs.openbsd.org 2010/08/31 21:14:58
[ssh.1]
small text tweak to accommodate previous;
- naddy@cvs.openbsd.org 2010/09/01 15:21:35
[servconf.c]
pick up ECDSA host key by default; ok djm@
20100831
- OpenBSD CVS Sync

View File

@ -1,4 +1,4 @@
/* $OpenBSD: servconf.c,v 1.209 2010/06/22 04:22:59 djm Exp $ */
/* $OpenBSD: servconf.c,v 1.210 2010/09/01 15:21:35 naddy Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
@ -154,6 +154,8 @@ fill_default_server_options(ServerOptions *options)
_PATH_HOST_RSA_KEY_FILE;
options->host_key_files[options->num_host_key_files++] =
_PATH_HOST_DSA_KEY_FILE;
options->host_key_files[options->num_host_key_files++] =
_PATH_HOST_ECDSA_KEY_FILE;
}
}
/* No certificates by default */