diff options
Diffstat (limited to 'ipc/ipc_channel_proxy.cc')
-rw-r--r-- | ipc/ipc_channel_proxy.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_channel_proxy.cc b/ipc/ipc_channel_proxy.cc index 1048310..0202e9e 100644 --- a/ipc/ipc_channel_proxy.cc +++ b/ipc/ipc_channel_proxy.cc @@ -414,13 +414,13 @@ int ChannelProxy::TakeClientFileDescriptor() { return channel->TakeClientFileDescriptor(); } -bool ChannelProxy::GetPeerEuid(uid_t* peer_euid) const { +bool ChannelProxy::GetClientEuid(uid_t* client_euid) const { DCHECK(CalledOnValidThread()); Channel* channel = context_.get()->channel_.get(); // Channel must have been created first. DCHECK(channel) << context_.get()->channel_id_; - return channel->GetPeerEuid(peer_euid); + return channel->GetClientEuid(client_euid); } #endif |