diff options
author | 2011-06-26 18:24:19 -0700 | |
---|---|---|
committer | 2011-06-26 18:24:19 -0700 | |
commit | 14f14863c508ff38fb2fe925c89e2bb2228fcffe (patch) | |
tree | c1d7e0d8439c9531b559ca848ecbe3ef44578b8c | |
parent | c18e7e73158f794064fed5017c6c1c9a288673bd (diff) |
KeyStore: allow system user to get secrets from keystore.
Change-Id: I9cb41344c17fb33e6614a45d46368a9c43e3dce7
-rw-r--r-- | cmds/keystore/keystore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/keystore/keystore.cpp b/cmds/keystore/keystore.cpp index bbd1a1bfd60c..1c1f37a34c7b 100644 --- a/cmds/keystore/keystore.cpp +++ b/cmds/keystore/keystore.cpp @@ -708,7 +708,7 @@ static struct user { uid_t euid; uint32_t perms; } users[] = { - {AID_SYSTEM, ~0, ~GET}, + {AID_SYSTEM, ~0, ~0}, {AID_VPN, AID_SYSTEM, GET}, {AID_WIFI, AID_SYSTEM, GET}, {AID_ROOT, AID_SYSTEM, GET}, |