diff options
author | Jeff Vander Stoep <jeffv@google.com> | 2017-06-16 04:58:00 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-06-16 04:58:00 +0200 |
commit | 3445b94c89927c93428e9e72b73f1303ad20450e (patch) | |
tree | cd587e5689c3de60b4792a158a81b433db0ad000 /updater | |
parent | Merge "kill package_extract_dir" am: 99e7216907 am: 49f9c969eb am: 66e53f59b9 (diff) | |
parent | Fix "No file_contexts" warning (diff) | |
download | android_bootable_recovery-3445b94c89927c93428e9e72b73f1303ad20450e.tar android_bootable_recovery-3445b94c89927c93428e9e72b73f1303ad20450e.tar.gz android_bootable_recovery-3445b94c89927c93428e9e72b73f1303ad20450e.tar.bz2 android_bootable_recovery-3445b94c89927c93428e9e72b73f1303ad20450e.tar.lz android_bootable_recovery-3445b94c89927c93428e9e72b73f1303ad20450e.tar.xz android_bootable_recovery-3445b94c89927c93428e9e72b73f1303ad20450e.tar.zst android_bootable_recovery-3445b94c89927c93428e9e72b73f1303ad20450e.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/updater.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/updater/updater.cpp b/updater/updater.cpp index f5ff6df91..1d8fa8e92 100644 --- a/updater/updater.cpp +++ b/updater/updater.cpp @@ -25,6 +25,7 @@ #include <android-base/logging.h> #include <android-base/strings.h> +#include <selinux/android.h> #include <selinux/label.h> #include <selinux/selinux.h> #include <ziparchive/zip_archive.h> @@ -139,9 +140,8 @@ int main(int argc, char** argv) { return 6; } - struct selinux_opt seopts[] = { { SELABEL_OPT_PATH, "/file_contexts" } }; - - sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1); + sehandle = selinux_android_file_context_handle(); + selinux_android_set_sehandle(sehandle); if (!sehandle) { fprintf(cmd_pipe, "ui_print Warning: No file_contexts\n"); |