summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index 86d28bc8d..da49a3944 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.124 2003/10/14 19:42:10 jakob Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.125 2003/11/12 16:39:58 jakob Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -401,10 +401,11 @@ parse_flag:
401 401
402 case oVerifyHostKeyDNS: 402 case oVerifyHostKeyDNS:
403 intptr = &options->verify_host_key_dns; 403 intptr = &options->verify_host_key_dns;
404 goto parse_flag; 404 goto parse_yesnoask;
405 405
406 case oStrictHostKeyChecking: 406 case oStrictHostKeyChecking:
407 intptr = &options->strict_host_key_checking; 407 intptr = &options->strict_host_key_checking;
408parse_yesnoask:
408 arg = strdelim(&s); 409 arg = strdelim(&s);
409 if (!arg || *arg == '\0') 410 if (!arg || *arg == '\0')
410 fatal("%.200s line %d: Missing yes/no/ask argument.", 411 fatal("%.200s line %d: Missing yes/no/ask argument.",