diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-23 02:19:27 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-23 02:39:57 +0200 |
commit | 73dec828ad61d046d10648ddca5c89ce70352a7a (patch) | |
tree | f9c6ac79c1a97736d9c39a282f78dca4ef4ec04d /tests/add_by_path.c | |
parent | 0b22d6ad0ebed2af239259dbfa36cd9920c6f4a2 (diff) |
Move fstree default option processing to fstree code
Instead of decomposing a default string in gensquashfs option processing,
move that to fstree_init instead and pass the option string directly to
fstree_init.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/add_by_path.c')
-rw-r--r-- | tests/add_by_path.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/add_by_path.c b/tests/add_by_path.c index 0023e0a..740e732 100644 --- a/tests/add_by_path.c +++ b/tests/add_by_path.c @@ -11,8 +11,11 @@ int main(void) tree_node_t *a, *b; struct stat sb; fstree_t fs; + char *opts; - assert(fstree_init(&fs, 512, 1337, 0755, 21, 42) == 0); + opts = strdup("mode=0755,uid=21,gid=42"); + assert(fstree_init(&fs, 512, opts) == 0); + free(opts); memset(&sb, 0, sizeof(sb)); sb.st_mode = S_IFDIR | 0750; |