archive: utimes modifies file, not link so don't use it for symlinks

cute-signatures
Timo Teras 2009-01-17 13:34:18 +02:00
parent 0365f7462b
commit 4d5efe6a05
1 changed files with 9 additions and 7 deletions

View File

@ -257,6 +257,7 @@ int apk_archive_entry_extract(const struct apk_file_info *ae,
}
}
if (!S_ISLNK(ae->mode)) {
/* preserve modification time */
utb.actime = utb.modtime = ae->mtime;
r = utime(fn, &utb);
@ -265,6 +266,7 @@ int apk_archive_entry_extract(const struct apk_file_info *ae,
fn, strerror(errno));
return -errno;
}
}
} else {
apk_error("Failed to extract %s: %s", ae->name, strerror(errno));
return -errno;