mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
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
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue