gldebugger: Allow connections from root user
Change-Id: I26ce670ae93c43bd36843576e824a9d7acea644d
This commit is contained in:
parent
6b8bef64f7
commit
c7d767ad57
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user