summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-29 08:00:54 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-29 08:00:54 +0000
commit5ed8acd3e327562e7f2fc87c82cb85111d72cbce (patch)
treed9f553563cc3d785e3dc8acc7a33d59d8c85147e /readconf.c
parentef1cf5d8ea9423d5b120638c2d2ca7609426d5e2 (diff)
- 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 5c091c60c..e3a1dd742 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: readconf.c,v 1.59 2001/01/22 23:06:39 markus Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.60 2001/01/28 20:36:16 stevesk Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -359,7 +359,7 @@ parse_flag:
359 intptr = &options->strict_host_key_checking; 359 intptr = &options->strict_host_key_checking;
360 arg = strdelim(&s); 360 arg = strdelim(&s);
361 if (!arg || *arg == '\0') 361 if (!arg || *arg == '\0')
362 fatal("%.200s line %d: Missing yes/no argument.", 362 fatal("%.200s line %d: Missing yes/no/ask argument.",
363 filename, linenum); 363 filename, linenum);
364 value = 0; /* To avoid compiler warning... */ 364 value = 0; /* To avoid compiler warning... */
365 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0) 365 if (strcmp(arg, "yes") == 0 || strcmp(arg, "true") == 0)