btrfs-progs: restore: list the supported compression

Show the list of supported compression algorithms in the help string as
we now have optional LZO and ZSTD.

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2022-05-24 19:17:57 +02:00
parent 73545c1fe6
commit 5c95441d2c

View file

@ -1358,6 +1358,15 @@ static const char * const cmd_restore_usage[] = {
" -v|--verbose deprecated, alias for global -v option",
HELPINFO_INSERT_GLOBALS,
HELPINFO_INSERT_VERBOSE,
"",
"Compression support: zlib"
#if BTRFSRESTORE_LZO
", lzo"
#endif
#if BTRFSRESTORE_ZSTD
", zstd"
#endif
,
NULL
};