| Index: remoting/host/win/com_security.cc
|
| diff --git a/remoting/host/win/com_security.cc b/remoting/host/win/com_security.cc
|
| index 34b3dc420253b94559ee3ffdb7b12038145295a1..9cefaad2d74b5800abd978d44ef7d32428cac745 100644
|
| --- a/remoting/host/win/com_security.cc
|
| +++ b/remoting/host/win/com_security.cc
|
| @@ -25,7 +25,7 @@ bool InitializeComSecurity(const std::string& security_descriptor,
|
| // Convert the SDDL description into a security descriptor in absolute format.
|
| ScopedSd relative_sd = ConvertSddlToSd(sddl);
|
| if (!relative_sd) {
|
| - LOG_GETLASTERROR(ERROR) << "Failed to create a security descriptor";
|
| + PLOG(ERROR) << "Failed to create a security descriptor";
|
| return false;
|
| }
|
| ScopedSd absolute_sd;
|
| @@ -35,7 +35,7 @@ bool InitializeComSecurity(const std::string& security_descriptor,
|
| ScopedAcl sacl;
|
| if (!MakeScopedAbsoluteSd(relative_sd, &absolute_sd, &dacl, &group, &owner,
|
| &sacl)) {
|
| - LOG_GETLASTERROR(ERROR) << "MakeScopedAbsoluteSd() failed";
|
| + PLOG(ERROR) << "MakeScopedAbsoluteSd() failed";
|
| return false;
|
| }
|
|
|
|
|