summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2013-09-11 00:51:42 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2013-09-11 00:51:42 +0200
commit53e8f3091849e80585044dfff4a7075c26936543 (patch)
tree19ea4eaf3037d148f9bf9543e2c04339aec95dbe
parentam cc421662: am 5dbdef0e: updater: introduce and set_metadata and set_metadata_recursive (diff)
parentam e461251e: Don\'t apply permission changes to symlink. (diff)
downloadandroid_bootable_recovery-53e8f3091849e80585044dfff4a7075c26936543.tar
android_bootable_recovery-53e8f3091849e80585044dfff4a7075c26936543.tar.gz
android_bootable_recovery-53e8f3091849e80585044dfff4a7075c26936543.tar.bz2
android_bootable_recovery-53e8f3091849e80585044dfff4a7075c26936543.tar.lz
android_bootable_recovery-53e8f3091849e80585044dfff4a7075c26936543.tar.xz
android_bootable_recovery-53e8f3091849e80585044dfff4a7075c26936543.tar.zst
android_bootable_recovery-53e8f3091849e80585044dfff4a7075c26936543.zip
-rw-r--r--updater/install.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/updater/install.c b/updater/install.c
index 770dbd09e..0a859452a 100644
--- a/updater/install.c
+++ b/updater/install.c
@@ -726,6 +726,11 @@ static int ApplyParsedPerms(
{
int bad = 0;
+ /* ignore symlinks */
+ if (S_ISLNK(statptr->st_mode)) {
+ return 0;
+ }
+
if (parsed.has_uid) {
if (chown(filename, parsed.uid, -1) < 0) {
printf("ApplyParsedPerms: chown of %s to %d failed: %s\n",