summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--readconf.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index cdb492dcf..82787983c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,10 @@
15 - markus@cvs.openbsd.org 2001/01/28 10:15:34 15 - markus@cvs.openbsd.org 2001/01/28 10:15:34
16 [dispatch.c] 16 [dispatch.c]
17 re-keying is not supported; ok deraadt@ 17 re-keying is not supported; ok deraadt@
18 - stevesk@cvs.openbsd.or 2001/01/28 20:36:16
19 [readconf.c]
20 ``StrictHostKeyChecking ask'' documentation and small cleanup.
21 ok markus@
18 22
1920010126 2320010126
20 - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen 24 - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen
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)