When restoring files, use the mode for the mode.
Thanks to: Jun Kuriyama for pointing this out
This commit is contained in:
parent
64c50c6403
commit
12255fe0d9
@ -383,7 +383,7 @@ extract_dir(struct archive *a, struct archive_entry *e, const char *path)
|
||||
{
|
||||
int mode;
|
||||
|
||||
mode = archive_entry_filetype(e) & 0777;
|
||||
mode = archive_entry_mode(e) & 0777;
|
||||
if (mode == 0)
|
||||
mode = 0755;
|
||||
|
||||
@ -425,7 +425,7 @@ extract_file(struct archive *a, struct archive_entry *e, const char *path)
|
||||
ssize_t len;
|
||||
unsigned char *p, *q, *end;
|
||||
|
||||
mode = archive_entry_filetype(e) & 0777;
|
||||
mode = archive_entry_mode(e) & 0777;
|
||||
if (mode == 0)
|
||||
mode = 0644;
|
||||
mtime = archive_entry_mtime(e);
|
||||
|
Loading…
Reference in New Issue
Block a user