From d17046773702aad9cb3269a23ecd35f5a4a552ff Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 8 Sep 2023 21:24:07 +0200 Subject: genquashfs: detect/filter hardlinks when scanning a directory The new behavior is enabled by default (except on Windows) and needs to be turned off explicitly. Signed-off-by: David Oberhollenzer --- include/io/dir_iterator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/io/dir_iterator.h b/include/io/dir_iterator.h index 210316f..7154b08 100644 --- a/include/io/dir_iterator.h +++ b/include/io/dir_iterator.h @@ -26,7 +26,8 @@ enum { DIR_SCAN_ONE_FILESYSTEM = 0x1000, DIR_SCAN_NO_RECURSION = 0x2000, - DIR_SCAN_MATCH_FULL_PATH = 0x4000, + DIR_SCAN_NO_HARDLINKS = 0x4000, + DIR_SCAN_MATCH_FULL_PATH = 0x8000, }; typedef struct { -- cgit v1.2.3