aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-01-30 04:13:18 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-01-30 04:13:18 +0000
commit482e758ada175212b7df5556e9b759459739b649 (patch)
tree4ee1ac95f3ee18f27c1abee7a46d6c322552875a
parent51e585023c5aca6c3b1e191305ddcd6683d9a4c3 (diff)
parentf000c43073685972da48fe21a948607bcdf6529e (diff)
downloadandroid_external_e2fsprogs-482e758ada175212b7df5556e9b759459739b649.tar.gz
android_external_e2fsprogs-482e758ada175212b7df5556e9b759459739b649.tar.bz2
android_external_e2fsprogs-482e758ada175212b7df5556e9b759459739b649.zip
Snap for 5268116 from f000c43073685972da48fe21a948607bcdf6529e to qt-release
Change-Id: I3f626a38eda036aaf1c5a755af56733413ef1814
-rw-r--r--contrib/android/perms.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/contrib/android/perms.c b/contrib/android/perms.c
index 3c42e597..9c5ec05b 100644
--- a/contrib/android/perms.c
+++ b/contrib/android/perms.c
@@ -81,9 +81,10 @@ static errcode_t set_selinux_xattr(ext2_filsys fs, ext2_ino_t ino,
retval = selabel_lookup(params->sehnd, &secontext, params->filename,
inode.i_mode);
if (retval < 0) {
- com_err(__func__, retval,
+ int saved_errno = errno;
+ com_err(__func__, errno,
_("searching for label \"%s\""), params->filename);
- return retval;
+ return saved_errno;
}
retval = ino_add_xattr(fs, ino, "security." XATTR_SELINUX_SUFFIX,
@@ -187,7 +188,7 @@ static errcode_t set_timestamp(ext2_filsys fs, ext2_ino_t ino,
}
retval = lstat(src_filename, &stat);
if (retval < 0) {
- com_err(__func__, retval,
+ com_err(__func__, errno,
_("while lstat file %s"), src_filename);
goto end;
}
@@ -339,18 +340,19 @@ errcode_t android_configure_fs(ext2_filsys fs, char *src_dir, char *target_out,
if (nopt > 0) {
sehnd = selabel_open(SELABEL_CTX_FILE, seopts, nopt);
if (!sehnd) {
- com_err(__func__, -EINVAL,
+ int saved_errno = errno;
+ com_err(__func__, errno,
_("while opening file contexts \"%s\""),
seopts[0].value);
- return -EINVAL;
+ return saved_errno;
}
}
#else
sehnd = selinux_android_file_context_handle();
if (!sehnd) {
- com_err(__func__, -EINVAL,
+ com_err(__func__, EINVAL,
_("while opening android file_contexts"));
- return -EINVAL;
+ return EINVAL;
}
#endif