summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2014-11-22 02:42:28 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-22 02:42:28 +0000
commitf8304929a059f80f42e97ea71c09a2d8a9c04874 (patch)
treef28e337306c63ccd15b5dff0ad2dcc2a7c3eba74 /adb
parente4fe1e967cebbbdf7e748ec1d362b62d408230ef (diff)
parent6fe92d1a3fb17545d82d020a3c995f32e6b71f9d (diff)
downloadsystem_core-f8304929a059f80f42e97ea71c09a2d8a9c04874.zip
system_core-f8304929a059f80f42e97ea71c09a2d8a9c04874.tar.gz
system_core-f8304929a059f80f42e97ea71c09a2d8a9c04874.tar.bz2
am 6fe92d1a: Merge "system/core: Remove AID_GRAPHICS from adb groups"
* commit '6fe92d1a3fb17545d82d020a3c995f32e6b71f9d': system/core: Remove AID_GRAPHICS from adb groups
Diffstat (limited to 'adb')
-rw-r--r--adb/adb.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/adb/adb.c b/adb/adb.c
index a6a4636..1834472 100644
--- a/adb/adb.c
+++ b/adb/adb.c
@@ -1348,14 +1348,13 @@ int adb_main(int is_daemon, int server_port)
** AID_LOG to read system logs (adb logcat)
** AID_INPUT to diagnose input issues (getevent)
** AID_INET to diagnose network issues (netcfg, ping)
- ** AID_GRAPHICS to access the frame buffer
** AID_NET_BT and AID_NET_BT_ADMIN to diagnose bluetooth (hcidump)
** AID_SDCARD_R to allow reading from the SD card
** AID_SDCARD_RW to allow writing to the SD card
** AID_NET_BW_STATS to read out qtaguid statistics
*/
- gid_t groups[] = { AID_ADB, AID_LOG, AID_INPUT, AID_INET, AID_GRAPHICS,
- AID_NET_BT, AID_NET_BT_ADMIN, AID_SDCARD_R, AID_SDCARD_RW,
+ gid_t groups[] = { AID_ADB, AID_LOG, AID_INPUT, AID_INET, AID_NET_BT,
+ AID_NET_BT_ADMIN, AID_SDCARD_R, AID_SDCARD_RW,
AID_NET_BW_STATS };
if (setgroups(sizeof(groups)/sizeof(groups[0]), groups) != 0) {
exit(1);