Index: components/policy/core/common/cloud/cloud_policy_constants.cc |
diff --git a/components/policy/core/common/cloud/cloud_policy_constants.cc b/components/policy/core/common/cloud/cloud_policy_constants.cc |
index 4d2920ecf92a89e4555988b2d0bc93e11c480f15..92be6e10abad80b336f10f49586611138e2f6c53 100644 |
--- a/components/policy/core/common/cloud/cloud_policy_constants.cc |
+++ b/components/policy/core/common/cloud/cloud_policy_constants.cc |
@@ -91,7 +91,7 @@ std::string GetPolicyVerificationKey() { |
// Disable key verification by default until production servers generate |
// the proper signatures. |
CommandLine* command_line = CommandLine::ForCurrentProcess(); |
- if (!command_line->HasSwitch(switches::kEnablePolicyKeyVerification)) { |
+ if (command_line->HasSwitch(switches::kDisablePolicyKeyVerification)) { |
return std::string(); |
} else { |
return std::string(reinterpret_cast<const char*>(kPolicyVerificationKey), |