summaryrefslogtreecommitdiffstats
path: root/adb/adb.c
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2014-01-15 03:18:56 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-01-15 03:18:57 +0000
commit42acb5314c8fb01f426e946392c248fde3371aff (patch)
tree458a48e5de0cd30b8c35dd83f110dcd6ff744e9d /adb/adb.c
parent7dee721eb3387fff695e5b5a3480428bccb3cf70 (diff)
parent225459a5da21e9397ca49b0d9af7d5fe3462706b (diff)
downloadsystem_core-42acb5314c8fb01f426e946392c248fde3371aff.zip
system_core-42acb5314c8fb01f426e946392c248fde3371aff.tar.gz
system_core-42acb5314c8fb01f426e946392c248fde3371aff.tar.bz2
Merge "Remove obsolete vdc call." into klp-modular-dev
Diffstat (limited to 'adb/adb.c')
-rw-r--r--adb/adb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/adb/adb.c b/adb/adb.c
index 41270f9..66e4953 100644
--- a/adb/adb.c
+++ b/adb/adb.c
@@ -1335,12 +1335,11 @@ int adb_main(int is_daemon, int server_port)
** 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_MOUNT to allow unmounting the SD card before rebooting
** 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,
- AID_MOUNT, AID_NET_BW_STATS };
+ AID_NET_BW_STATS };
if (setgroups(sizeof(groups)/sizeof(groups[0]), groups) != 0) {
exit(1);
}