From 788914780244125b01fb55b177e5e6129e6bbfa2 Mon Sep 17 00:00:00 2001 From: sheldonh Date: Wed, 22 Mar 2000 09:36:35 +0000 Subject: 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(-) (limited to 'crypto') diff --git a/crypto/openssh/servconf.c b/crypto/openssh/servconf.c index 7852348..32f04c7 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; -- cgit v1.1