[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
Родитель ef1cf5d8ea
Коммит 5ed8acd3e3
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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)