mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
Fix contents= being ignored in msdosfs makefs mtree
I noticed this while trying to build an EFI boot image Reviewed By: emaste Differential Revision: https://reviews.freebsd.org/D22387
This commit is contained in:
parent
782b97cb80
commit
62a3510f1f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=354738
@ -262,7 +262,8 @@ msdos_populate_dir(const char *path, struct denode *dir, fsnode *root,
|
||||
cur->name);
|
||||
continue;
|
||||
}
|
||||
if (msdosfs_mkfile(pbuf, dir, cur) == NULL) {
|
||||
if (msdosfs_mkfile(cur->contents ? cur->contents : pbuf, dir,
|
||||
cur) == NULL) {
|
||||
warn("msdosfs_mkfile %s", pbuf);
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user