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
This commit is contained in:
Sheldon Hearn 2000-03-22 09:36:35 +00:00
parent 912e4ae9f7
commit 962a3f4e81
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58463

View File

@ -427,7 +427,7 @@ read_server_config(ServerOptions *options, const char *filename)
case sIgnoreUserKnownHosts:
intptr = &options->ignore_user_known_hosts;
goto parse_int;
goto parse_flag;
case sRhostsAuthentication:
intptr = &options->rhosts_authentication;