system/core: vold: Change permission of external storage device nodes

Signed-off-by: San Mehat <san@google.com>
This commit is contained in:
San Mehat 2009-08-21 08:16:56 -07:00
parent e3baafd85a
commit 85b3fcc5de
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ static blkdev_t *_blkdev_create(blkdev_t *disk, char *devpath, int major,
/* Create device nodes */
char nodepath[255];
mode_t mode = 0666 | S_IFBLK;
mode_t mode = 0660 | S_IFBLK;
dev_t dev = (major << 8) | minor;
sprintf(nodepath, "%s/vold/%d:%d", DEVPATH, major, minor);