From 259a98985b4f93347923d1b2c3aaa535397aaa89 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Thu, 11 Jun 2020 01:57:26 +0200 Subject: Add flags to functions that might logically be expanded in the future Signed-off-by: David Oberhollenzer --- bin/gensquashfs/dirscan_xattr.c | 2 +- bin/gensquashfs/mkfs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/gensquashfs') diff --git a/bin/gensquashfs/dirscan_xattr.c b/bin/gensquashfs/dirscan_xattr.c index 3995a19..5ed3c9c 100644 --- a/bin/gensquashfs/dirscan_xattr.c +++ b/bin/gensquashfs/dirscan_xattr.c @@ -128,7 +128,7 @@ static int xattr_xcan_dfs(const char *path_prefix, void *selinux_handle, char *path; int ret; - ret = sqfs_xattr_writer_begin(xwr); + ret = sqfs_xattr_writer_begin(xwr, 0); if (ret) { sqfs_perror(node->name, "recoding xattr key-value pairs\n", ret); diff --git a/bin/gensquashfs/mkfs.c b/bin/gensquashfs/mkfs.c index 87778d9..66e10a9 100644 --- a/bin/gensquashfs/mkfs.c +++ b/bin/gensquashfs/mkfs.c @@ -114,7 +114,7 @@ static int relabel_tree_dfs(const char *filename, sqfs_xattr_writer_t *xwr, return -1; } - ret = sqfs_xattr_writer_begin(xwr); + ret = sqfs_xattr_writer_begin(xwr, 0); if (ret) { sqfs_perror(filename, "recording xattr key-value pairs", ret); return -1; -- cgit v1.2.3