Commit c8329ff4 authored by stevenjb@chromium.org's avatar stevenjb@chromium.org

Remove bogus error from client_cert_resolver.cc

BUG=393330

Review URL: https://codereview.chromium.org/387103002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282820 0039d316-1c4b-4281-b951-d872f2087c98
parent 8f2de584
......@@ -334,15 +334,10 @@ void ClientCertResolver::ResolveNetworks(
// In any case, don't check this network again in NetworkListChanged.
resolved_networks_.insert(network->path());
// If this network is not managed, it cannot have a ClientCertPattern.
if (network->guid().empty())
// If this network is not configured, it cannot have a ClientCertPattern.
if (network->profile_path().empty())
continue;
if (network->profile_path().empty()) {
LOG(ERROR) << "Network " << network->path()
<< " has a GUID but not profile path";
continue;
}
const base::DictionaryValue* policy =
managed_network_config_handler_->FindPolicyByGuidAndProfile(
network->guid(), network->profile_path());
......
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