Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(739)

Unified Diff: ipc/ipc_channel_posix.cc

Issue 7238021: Solaris patch (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ipc/ipc_channel_posix.cc
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc
index 2994828135d8e2996379ca008be71046e93fda87..bcecc3eb1ec0b2ed9c425b24be23ed1b28573a73 100644
--- a/ipc/ipc_channel_posix.cc
+++ b/ipc/ipc_channel_posix.cc
@@ -938,6 +938,8 @@ bool Channel::ChannelImpl::GetClientEuid(uid_t* client_euid) const {
}
*client_euid = peer_euid;
return true;
+#elif defined(OS_SOLARIS)
+return false;
Evan Martin 2011/06/24 17:51:18 two space indnet
#else
struct ucred cred;
socklen_t cred_len = sizeof(cred);

Powered by Google App Engine
This is Rietveld 408576698