fix: default enable_negotiate_port to false (#18251)

This commit is contained in:
Jeremy Apthorp
2019-05-13 11:28:01 -07:00
committed by GitHub
parent 3a5e6f2551
commit 78d45a17c8
3 changed files with 6 additions and 0 deletions

View File

@@ -51,6 +51,8 @@ network::mojom::HttpAuthDynamicParamsPtr CreateHttpAuthDynamicParams() {
command_line->GetSwitchValueASCII(atom::switches::kAuthServerWhitelist);
auth_dynamic_params->delegate_whitelist = command_line->GetSwitchValueASCII(
atom::switches::kAuthNegotiateDelegateWhitelist);
auth_dynamic_params->enable_negotiate_port =
command_line->HasSwitch(atom::switches::kEnableAuthNegotiatePort);
return auth_dynamic_params;
}