summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--servconf.c5
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index da43230e8..964bf3383 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,9 @@
16 - stevesk@cvs.openbsd.org 2001/02/21 21:14:04 16 - stevesk@cvs.openbsd.org 2001/02/21 21:14:04
17 [ssh.c] 17 [ssh.c]
18 -i supports DSA identities now; ok markus@ 18 -i supports DSA identities now; ok markus@
19 - deraadt@cvs.openbsd.org 2001/02/22 04:29:37
20 [servconf.c]
21 grammar; slade@shore.net
19 22
2020010304 2320010304
21 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid. 24 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
@@ -4208,4 +4211,4 @@
4208 - Wrote replacements for strlcpy and mkdtemp 4211 - Wrote replacements for strlcpy and mkdtemp
4209 - Released 1.0pre1 4212 - Released 1.0pre1
4210 4213
4211$Id: ChangeLog,v 1.856 2001/03/05 05:04:57 mouring Exp $ 4214$Id: ChangeLog,v 1.857 2001/03/05 05:07:52 mouring Exp $
diff --git a/servconf.c b/servconf.c
index 27c8671cf..fdadea70d 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.67 2001/02/12 16:16:23 markus Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.68 2001/02/22 04:29:37 deraadt Exp $");
14 14
15#ifdef KRB4 15#ifdef KRB4
16#include <krb.h> 16#include <krb.h>
@@ -414,7 +414,8 @@ parse_int:
414 case sHostKeyFile: 414 case sHostKeyFile:
415 intptr = &options->num_host_key_files; 415 intptr = &options->num_host_key_files;
416 if (*intptr >= MAX_HOSTKEYS) { 416 if (*intptr >= MAX_HOSTKEYS) {
417 fprintf(stderr, "%s line %d: to many host keys specified (max %d).\n", 417 fprintf(stderr,
418 "%s line %d: too many host keys specified (max %d).\n",
418 filename, linenum, MAX_HOSTKEYS); 419 filename, linenum, MAX_HOSTKEYS);
419 exit(1); 420 exit(1);
420 } 421 }