diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2000-03-22 09:36:35 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2000-03-22 09:36:35 +0000 |
commit | 788914780244125b01fb55b177e5e6129e6bbfa2 (patch) | |
tree | b25f2e5a71ff3d0a022651f9f87ef1338083823b /crypto | |
parent | 1b817afc6dd6947197e1b893dab593733e93e4af (diff) | |
download | FreeBSD-src-788914780244125b01fb55b177e5e6129e6bbfa2.zip FreeBSD-src-788914780244125b01fb55b177e5e6129e6bbfa2.tar.gz |
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 <dwmalone@maths.tcd.ie>
Obtained from: OpenBSD
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/servconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |