aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael S. Fischer <mfischer@zendesk.com>2017-11-27 19:32:50 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-11-27 19:32:50 +0000
commit6ba1c452904c2482cfbd591424b5f6acfa18385b (patch)
tree1a24fcf9a8ee4677894d99d709c7e9324ceb09df
parent37f4b0481ef833ce32d9b6503d949cf61187d651 (diff)
parent2e691e22eeb62e3a7de90aefc30b7ead94f6c26b (diff)
downloadsquashfs-tools-6ba1c452904c2482cfbd591424b5f6acfa18385b.tar.gz
Merge "unsquashfs: modify xattrs after other changes"
am: 2e691e22ee Change-Id: I6495cbd84114364e3ba659ecb1b5d28ef9c1932e
-rw-r--r--squashfs-tools/unsquashfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/squashfs-tools/unsquashfs.c b/squashfs-tools/unsquashfs.c
index 7f46968..0dbc4c2 100644
--- a/squashfs-tools/unsquashfs.c
+++ b/squashfs-tools/unsquashfs.c
@@ -826,8 +826,6 @@ int set_attributes(char *pathname, int mode, uid_t uid, gid_t guid, time_t time,
{
struct utimbuf times = { time, time };
- write_xattr(pathname, xattr);
-
if(utime(pathname, &times) == -1) {
ERROR("set_attributes: failed to set time on %s, because %s\n",
pathname, strerror(errno));
@@ -850,6 +848,8 @@ int set_attributes(char *pathname, int mode, uid_t uid, gid_t guid, time_t time,
return FALSE;
}
+ write_xattr(pathname, xattr);
+
return TRUE;
}