diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-05-21 02:32:20 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-05-21 02:42:47 +0200 |
commit | 64c4b80b7cd9d5adeeba30361ba3d91c45f26f00 (patch) | |
tree | df6a0823139c9477d78329048960426f48cf4937 /bin | |
parent | 98b660135e142371431759c2a52a6ecb5457bb0d (diff) |
Fix the semantics of the super block deduplication
Its purely informational, but make sure other programs don't print
out scary messages that imply the data has been ineficiently.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sqfsdiff/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sqfsdiff/super.c b/bin/sqfsdiff/super.c index 111412a..0cf18e0 100644 --- a/bin/sqfsdiff/super.c +++ b/bin/sqfsdiff/super.c @@ -15,7 +15,7 @@ static const struct { { SQFS_FLAG_UNCOMPRESSED_FRAGMENTS, "uncompressed fragments" }, { SQFS_FLAG_NO_FRAGMENTS, "no fragments" }, { SQFS_FLAG_ALWAYS_FRAGMENTS, "always fragments" }, - { SQFS_FLAG_DUPLICATES, "duplicates" }, + { SQFS_FLAG_NO_DUPLICATES, "no duplicates" }, { SQFS_FLAG_EXPORTABLE, "exportable" }, { SQFS_FLAG_UNCOMPRESSED_XATTRS, "uncompressed xattrs" }, { SQFS_FLAG_NO_XATTRS, "no xattrs" }, |