Commit 4ea857b4 authored by Yann Dago's avatar Yann Dago Committed by Commit Bot

Fix mismatched pref auth.server_allowlist and auth.server_whitelist

Bug: 1149989
Change-Id: If7daa7e9bb5f43b43860cc097f214755b3b75bdf
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2544370Reviewed-by: default avatarBrian Malcolm <bmalcolm@chromium.org>
Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Commit-Queue: Yann Dago <ydago@chromium.org>
Cr-Commit-Position: refs/heads/master@{#828426}
parent 2c73aa66
...@@ -2007,7 +2007,7 @@ const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; ...@@ -2007,7 +2007,7 @@ const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port";
// Allowlist containing servers for which Integrated Authentication is enabled. // Allowlist containing servers for which Integrated Authentication is enabled.
// Note that this used to be `kAuthServerWhitelist`, hence the difference // Note that this used to be `kAuthServerWhitelist`, hence the difference
// between the variable name and the string value. // between the variable name and the string value.
const char kAuthServerAllowlist[] = "auth.server_whitelist"; const char kAuthServerAllowlist[] = "auth.server_allowlist";
// Allowlist containing servers Chrome is allowed to do Kerberos delegation // Allowlist containing servers Chrome is allowed to do Kerberos delegation
// with. Note that this used to be `kAuthNegotiateDelegateWhitelist`, hence the // with. Note that this used to be `kAuthNegotiateDelegateWhitelist`, hence the
......
...@@ -1241,7 +1241,7 @@ ...@@ -1241,7 +1241,7 @@
"policy_pref_mapping_test": [ "policy_pref_mapping_test": [
{ {
"policies": { "AuthServerWhitelist": "localhost" }, "policies": { "AuthServerWhitelist": "localhost" },
"prefs": { "auth.server_whitelist": { "local_state": true } } "prefs": { "auth.server_allowlist": { "local_state": true } }
} }
] ]
}, },
...@@ -1251,7 +1251,7 @@ ...@@ -1251,7 +1251,7 @@
"policy_pref_mapping_test": [ "policy_pref_mapping_test": [
{ {
"policies": { "AuthServerAllowlist": "localhost" }, "policies": { "AuthServerAllowlist": "localhost" },
"prefs": { "auth.server_whitelist": { "local_state": true } } "prefs": { "auth.server_allowlist": { "local_state": 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