diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-01-28 20:36:17 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-01-28 20:36:17 +0000 |
commit | 0dbe1344f0223a3711fe88bd4d42c0f6893718f3 (patch) | |
tree | 595ac45c6079a0d6208f5b2eb7918fc6d7fbde85 /usr.bin/ssh/readconf.c | |
parent | bacf4a7fc6dafa780ec51a5381c868a5c0ae88da (diff) |
``StrictHostKeyChecking ask'' documentation and small cleanup.
ok markus@
Diffstat (limited to 'usr.bin/ssh/readconf.c')
-rw-r--r-- | usr.bin/ssh/readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 2a55cedfb56..4fc830c9318 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/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" @@ -357,7 +357,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) |