From 962a3f4e8136f9fffe16b9e9964c18d2086be2f7 Mon Sep 17 00:00:00 2001 From: Sheldon Hearn Date: Wed, 22 Mar 2000 09:36:35 +0000 Subject: [PATCH] IgnoreUserKnownHosts is a boolean flag, not an integer value. The fix submitted in the attributed PR is identical to the one adopted by OpenBSD. PR: 17027 Submitted by: David Malone Obtained from: OpenBSD --- crypto/openssh/servconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/openssh/servconf.c b/crypto/openssh/servconf.c index 7852348cf62..32f04c72aff 100644 --- a/crypto/openssh/servconf.c +++ b/crypto/openssh/servconf.c @@ -427,7 +427,7 @@ parse_flag: case sIgnoreUserKnownHosts: intptr = &options->ignore_user_known_hosts; - goto parse_int; + goto parse_flag; case sRhostsAuthentication: intptr = &options->rhosts_authentication;