Commit a414d98b authored by Eric Roman's avatar Eric Roman Committed by Commit Bot

Change the default of HttpAuthDynamicParams::enable_negotiate_port to false.

The expected default is false, as that is what is used at other layers:
  * net::HttpAuthPreferences
  * prefs::kEnableAuthNegotiatePort
  * key::kEnableAuthNegotiatePort

Using true can cause problems with integrated auth, as it constructs SPNs in the less common way.

Bug: 924746
Change-Id: I2d09f0c72aa2ac8d8f60c1e2adfeb92c379d336b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2225531
Commit-Queue: Eric Roman <eroman@chromium.org>
Commit-Queue: Will Harris <wfh@chromium.org>
Reviewed-by: default avatarMatt Menke <mmenke@chromium.org>
Reviewed-by: default avatarWill Harris <wfh@chromium.org>
Auto-Submit: Eric Roman <eroman@chromium.org>
Cr-Commit-Position: refs/heads/master@{#774396}
parent a23178f9
......@@ -149,7 +149,7 @@ struct HttpAuthDynamicParams {
// True if Negotiate SPNs (service principal names) should include ports
// when the port isn't a standard port (80 or 443).
bool enable_negotiate_port = true;
bool enable_negotiate_port = false;
// Whether NTLM V2 is enabled on POSIX platforms. No effect elsewhere.
bool ntlm_v2_enabled = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment