Displaying 1 result from an estimated 1 matches for "server_lies_warning".
2003 Nov 04
0
ServerLiesWarning
...rning },
 	{ "compression", oCompression },
 	{ "compressionlevel", oCompressionLevel },
 	{ "keepalive", oKeepAlives },
@@ -402,6 +403,10 @@
 		intptr = &options->verify_host_key_dns;
 		goto parse_flag;
 
+	case oServerLiesWarning:
+		intptr = &options->server_lies_warning;
+		goto parse_flag;
+
 	case oStrictHostKeyChecking:
 		intptr = &options->strict_host_key_checking;
 		arg = strdelim(&s);
@@ -856,6 +861,7 @@
 	options->no_host_authentication_for_localhost = - 1;
 	options->rekey_limit = - 1;
 	options->verify_host_key_dns = -1;
+	options-&g...