Merge "gldebugger: Allow connections from root user" into jb-dev

This commit is contained in:
Siva Velusamy 2012-04-26 13:37:43 -07:00 committed by Android (Google) Code Review
commit 90fe9d0dbd

View File

@ -75,8 +75,9 @@ int acceptClientConnection(char *sockname) {
return -1; return -1;
} }
// Only accept connects from the shell (adb forward comes to us as shell user) // Only accept connects from the shell (adb forward comes to us as shell user),
if (cr.uid != AID_SHELL) { // or the root user.
if (cr.uid != AID_SHELL && cr.uid != AID_ROOT) {
ALOGE("Unknown peer type (%d), expected shell to be the peer", cr.uid); ALOGE("Unknown peer type (%d), expected shell to be the peer", cr.uid);
return -1; return -1;
} }