Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c7d767ad authored by Siva Velusamy's avatar Siva Velusamy
Browse files

gldebugger: Allow connections from root user

Change-Id: I26ce670ae93c43bd36843576e824a9d7acea644d
parent 6b8bef64
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -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;
    }
    }