[readconf.c]
     ``StrictHostKeyChecking ask'' documentation and small cleanup.
     ok markus@
This commit is contained in:
Ben Lindstrom 2001-01-29 08:00:54 +00:00
parent ef1cf5d8ea
commit 5ed8acd3e3
2 changed files with 6 additions and 2 deletions

View File

@ -15,6 +15,10 @@
- markus@cvs.openbsd.org 2001/01/28 10:15:34 - markus@cvs.openbsd.org 2001/01/28 10:15:34
[dispatch.c] [dispatch.c]
re-keying is not supported; ok deraadt@ 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 20010126
- (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen

View File

@ -12,7 +12,7 @@
*/ */
#include "includes.h" #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 "ssh.h"
#include "xmalloc.h" #include "xmalloc.h"
@ -359,7 +359,7 @@ parse_flag:
intptr = &options->strict_host_key_checking; intptr = &options->strict_host_key_checking;
arg = strdelim(&s); arg = strdelim(&s);
if (!arg || *arg == '\0') if (!arg || *arg == '\0')
fatal("%.200s line %d: Missing yes/no argument.", fatal("%.200s line %d: Missing yes/no/ask argument.",
filename, linenum); filename, linenum);
value = 0; /* To avoid compiler warning... */ value = 0; /* To avoid compiler warning... */
if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0) if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)