commit | 3450b5893149c0ea42dd775337e9a088fad8ba7f | [log] [tgz] |
---|---|---|
author | TreeHugger Robot <treehugger-gerrit@google.com> | Tue Nov 14 00:16:52 2017 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Tue Nov 14 00:16:52 2017 +0000 |
tree | 3743e5dec40c8a9025633f088f43c43e82bd0a9a | |
parent | 002adfd5d00214d29e3b5b1fdd64e26eda64cb3c [diff] | |
parent | 697e481332ade1773c68cccdccadc42b0cc6f345 [diff] |
Merge "sdcard: Use AID_ROOT constant"
diff --git a/sdcard/fuse.cpp b/sdcard/fuse.cpp index 95559d7..10d0f04 100644 --- a/sdcard/fuse.cpp +++ b/sdcard/fuse.cpp
@@ -323,7 +323,7 @@ /* Root always has access; access for any other UIDs should always * be controlled through packages.list. */ - if (hdr->uid == 0) { + if (hdr->uid == AID_ROOT) { return true; }