]> git.seodisparate.com - SimpleArchiver/commitdiff
Update help text on `--chunk-min-size`, README.md
authorStephen Seo <seo.disparate@gmail.com>
Thu, 20 Feb 2025 06:36:19 +0000 (15:36 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Thu, 20 Feb 2025 06:36:19 +0000 (15:36 +0900)
README.md
src/parser.c

index 15cd644fe3973cd82dc2dac5911caec405380aaa..6807a4b0e0aac908f15d93f722e04bbdd2f70e78 100644 (file)
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ API calls.
     --no-safe-links : keep symlinks that link to outside archive contents
     --temp-files-dir <dir> : where to store temporary files created when compressing (defaults to current working directory)
     --write-version <version> : Force write version file format (default 3)
-    --chunk-min-size <bytes> : v1 file format minimum chunk size (default 4194304 or 4MiB)
+    --chunk-min-size <bytes> : minimum chunk size (default 4194304 or 4MiB) when using chunks (file formats v. 1 and up)
     --no-pre-sort-files : do NOT pre-sort files by size (by default enabled so that the first file is the largest)
     --no-preserve-empty-dirs : do NOT preserve empty dirs (only for file format 2 and onwards)
     --force-uid <uid> : Force set UID on archive creation/extraction
index bd597863c47c2fc5ff5ebd2874e3459b2c6263db..bd928668c6a921096224f51beb7e874ce9aaf1a8 100644 (file)
@@ -191,8 +191,8 @@ void simple_archiver_print_usage(void) {
           "--write-version <version> : Force write version file format "
           "(default 3)\n");
   fprintf(stderr,
-          "--chunk-min-size <bytes> : v1 file format minimum chunk size "
-          "(default 4194304 or 4MiB)\n");
+          "--chunk-min-size <bytes> : minimum chunk size (default 4194304 or "
+          "4MiB) when using chunks (file formats v. 1 and up)\n");
   fprintf(stderr,
           "--no-pre-sort-files : do NOT pre-sort files by size (by default "
           "enabled so that the first file is the largest)\n");