| Index: load.cc
|
| diff --git a/load.cc b/load.cc
|
| index dae98912f38416f75267339f23fd6c8af293c508..5ef060e2688fc2ec88ef4118fcf4cb11b5553579 100644
|
| --- a/load.cc
|
| +++ b/load.cc
|
| @@ -94,7 +94,7 @@ DECL_FUNC_0(RetrieveMountInformation, MountStatus*);
|
| DECL_FUNC_1(FreeMountStatus, void, MountStatus*);
|
|
|
| // Networking
|
| -DECL_FUNC_3(ConnectToWifiNetwork, bool, const char*, const char*, const char*);
|
| +DECL_FUNC_2(ConnectToNetwork, bool, const char*, const char*);
|
| DECL_FUNC_0(GetAvailableNetworks, ServiceStatus*);
|
| DECL_FUNC_1(FreeServiceStatus, void, ServiceStatus*);
|
| DECL_FUNC_2(MonitorNetworkStatus,
|
| @@ -217,7 +217,7 @@ bool LoadLibcros(const char* path_to_libcros, std::string& error_string) {
|
| INIT_FUNC(FreeMountStatus);
|
|
|
| // Networking
|
| - INIT_FUNC(ConnectToWifiNetwork);
|
| + INIT_FUNC(ConnectToNetwork);
|
| INIT_FUNC(GetAvailableNetworks);
|
| INIT_FUNC(FreeServiceStatus);
|
| INIT_FUNC(MonitorNetworkStatus);
|
|
|