| Index: remoting/host/mac/me2me_preference_pane.mm
|
| diff --git a/remoting/host/mac/me2me_preference_pane.mm b/remoting/host/mac/me2me_preference_pane.mm
|
| index 7fba5c2630a29dc5bd84d279197f003c7225b430..508f5cd648487f93d0328e465ae4cd6d9d78a606 100644
|
| --- a/remoting/host/mac/me2me_preference_pane.mm
|
| +++ b/remoting/host/mac/me2me_preference_pane.mm
|
| @@ -16,6 +16,7 @@
|
|
|
| #include <fstream>
|
|
|
| +#include "base/mac/mac_logging.h"
|
| #include "base/mac/scoped_launch_data.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/posix/eintr_wrapper.h"
|
| @@ -521,7 +522,8 @@ std::string JsonHostConfig::GetSerializedData() const {
|
| &pid);
|
| if (status != errAuthorizationSuccess) {
|
| NSLog(@"AuthorizationExecuteWithPrivileges: %s (%d)",
|
| - GetMacOSStatusErrorString(status), static_cast<int>(status));
|
| + logging::DescriptionFromOSStatus(status).c_str(),
|
| + static_cast<int>(status));
|
| return NO;
|
| }
|
| if (pid == -1) {
|
|
|