From 5ed8acd3e327562e7f2fc87c82cb85111d72cbce Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Mon, 29 Jan 2001 08:00:54 +0000 Subject: [PATCH] - stevesk@cvs.openbsd.or 2001/01/28 20:36:16 [readconf.c] ``StrictHostKeyChecking ask'' documentation and small cleanup. ok markus@ --- ChangeLog | 4 ++++ readconf.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index cdb492dcf..82787983c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,10 @@ - markus@cvs.openbsd.org 2001/01/28 10:15:34 [dispatch.c] re-keying is not supported; ok deraadt@ + - stevesk@cvs.openbsd.or 2001/01/28 20:36:16 + [readconf.c] + ``StrictHostKeyChecking ask'' documentation and small cleanup. + ok markus@ 20010126 - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen diff --git a/readconf.c b/readconf.c index 5c091c60c..e3a1dd742 100644 --- a/readconf.c +++ b/readconf.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.59 2001/01/22 23:06:39 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.60 2001/01/28 20:36:16 stevesk Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -359,7 +359,7 @@ parse_flag: intptr = &options->strict_host_key_checking; arg = strdelim(&s); if (!arg || *arg == '\0') - fatal("%.200s line %d: Missing yes/no argument.", + fatal("%.200s line %d: Missing yes/no/ask argument.", filename, linenum); value = 0; /* To avoid compiler warning... */ if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)