diff options
Diffstat (limited to 'chromeos/network/shill_property_handler.cc')
-rw-r--r-- | chromeos/network/shill_property_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/network/shill_property_handler.cc b/chromeos/network/shill_property_handler.cc index 6749518..f15cb85 100644 --- a/chromeos/network/shill_property_handler.cc +++ b/chromeos/network/shill_property_handler.cc @@ -221,7 +221,7 @@ void ShillPropertyHandler::ManagerPropertiesCallback( bool notify = false; bool update_service_list = false; for (base::DictionaryValue::Iterator iter(properties); - iter.HasNext(); iter.Advance()) { + !iter.IsAtEnd(); iter.Advance()) { // Defer updating Services until all other properties have been updated. if (iter.key() == flimflam::kServicesProperty) update_service_list = true; |