]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Fix archive_write_set_format_option for 7zip format (#2093)
authorElvis Angelaccio <elvisangelaccio@users.noreply.github.com>
Sun, 17 Mar 2024 21:20:29 +0000 (22:20 +0100)
committerGitHub <noreply@github.com>
Sun, 17 Mar 2024 21:20:29 +0000 (14:20 -0700)
A couple of small fixes to the documentation of the
`archive_write_set_format_option` for the 7zip format. See commits for
details.

libarchive/archive_write_set_options.3

index f987e3e5b8f37940154d1e5457aef784339dec3d..454c79671b9337ffdc8f5b8b404670b1a5b0f5ce 100644 (file)
@@ -270,6 +270,7 @@ of physical CPU cores.
 .It Cm compression
 The value is one of
 .Dq store ,
+.Dq copy ,
 .Dq deflate ,
 .Dq bzip2 ,
 .Dq lzma1 ,
@@ -277,12 +278,18 @@ The value is one of
 or
 .Dq ppmd
 to indicate how the following entries should be compressed.
+The values
+.Dq store
+and
+.Dq copy
+are synonyms.
 Note that this setting is ignored for directories, symbolic links,
 and other special entries.
 .It Cm compression-level
 The value is interpreted as a decimal integer specifying the
 compression level.
-Values between 0 and 9 are supported.
+Values between 0 and 9 are supported, with the exception of bzip2
+which only supports values between 1 and 9.
 The interpretation of the compression level depends on the chosen
 compression method.
 .El