Index: chromeos/dbus/shill_manager_client_stub.cc |
diff --git a/chromeos/dbus/shill_manager_client_stub.cc b/chromeos/dbus/shill_manager_client_stub.cc |
index 8681baf0c80ecd28ea80a67414585c605e2af15e..d813ea2380be781a4f326e4f8ab828f8f318d8de 100644 |
--- a/chromeos/dbus/shill_manager_client_stub.cc |
+++ b/chromeos/dbus/shill_manager_client_stub.cc |
@@ -176,8 +176,12 @@ void ShillManagerClientStub::ConfigureService( |
return; |
} |
+ std::string ipconfig_path; |
+ properties.GetString(shill::kIPConfigProperty, &ipconfig_path); |
+ |
// Add the service to the service client stub if not already there. |
- service_client->AddService(guid, guid, type, flimflam::kStateIdle, true); |
+ service_client->AddService(guid, guid, type, flimflam::kStateIdle, |
+ ipconfig_path, true); |
// Merge the new properties with existing properties, if any. |
scoped_ptr<base::DictionaryValue> merged_properties; |