summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
authormouring <mouring>2001-01-29 08:00:54 +0000
committermouring <mouring>2001-01-29 08:00:54 +0000
commitb3032952314e89b0380249577f3e4c01f5003b6a (patch)
tree6076d1e46181a6a824be766a0306ae40b4070902 /readconf.c
parent6295c6e175b0ce91968b2323a1d4d6578d2f9498 (diff)
downloadopenssh-b3032952314e89b0380249577f3e4c01f5003b6a.tar.gz
- stevesk@cvs.openbsd.or 2001/01/28 20:36:16
[readconf.c] ``StrictHostKeyChecking ask'' documentation and small cleanup. ok markus@
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index 5c091c60..e3a1dd74 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)