| 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..c217de826451d0c2f75f3ef1683087f8879cbd6e 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->AddServiceWithIPConfig(guid, guid, type, flimflam::kStateIdle,
|
| + ipconfig_path, true);
|
|
|
| // Merge the new properties with existing properties, if any.
|
| scoped_ptr<base::DictionaryValue> merged_properties;
|
|
|