[servconf.c]
     grammar; slade@shore.net
This commit is contained in:
Ben Lindstrom 2001-03-05 05:07:52 +00:00
parent 87af95b3e7
commit 33a3cc30eb
2 changed files with 7 additions and 3 deletions

View File

@ -16,6 +16,9 @@
- stevesk@cvs.openbsd.org 2001/02/21 21:14:04
[ssh.c]
-i supports DSA identities now; ok markus@
- deraadt@cvs.openbsd.org 2001/02/22 04:29:37
[servconf.c]
grammar; slade@shore.net
20010304
- (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
@ -4208,4 +4211,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.856 2001/03/05 05:04:57 mouring Exp $
$Id: ChangeLog,v 1.857 2001/03/05 05:07:52 mouring Exp $

View File

@ -10,7 +10,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: servconf.c,v 1.67 2001/02/12 16:16:23 markus Exp $");
RCSID("$OpenBSD: servconf.c,v 1.68 2001/02/22 04:29:37 deraadt Exp $");
#ifdef KRB4
#include <krb.h>
@ -414,7 +414,8 @@ parse_int:
case sHostKeyFile:
intptr = &options->num_host_key_files;
if (*intptr >= MAX_HOSTKEYS) {
fprintf(stderr, "%s line %d: to many host keys specified (max %d).\n",
fprintf(stderr,
"%s line %d: too many host keys specified (max %d).\n",
filename, linenum, MAX_HOSTKEYS);
exit(1);
}