From 08f6e7d907c99cefd96b07041c2b65ebf1b48dc3 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Wed, 1 Jun 2022 03:30:18 +0200 Subject: [PATCH] Add parameter to control progress report interval --- GCryptCLI/src/CommandlineInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GCryptCLI/src/CommandlineInterface.cpp b/GCryptCLI/src/CommandlineInterface.cpp index 72db0df..a5e6a66 100644 --- a/GCryptCLI/src/CommandlineInterface.cpp +++ b/GCryptCLI/src/CommandlineInterface.cpp @@ -68,7 +68,7 @@ void CommandlineInterface::Init(int argc, const char* const* argv) { nupp.RegisterConstraint("--progress", ParamConstraint(true, DATA_TYPE::VOID, {}, false, {})); nupp.RegisterAbbreviation("-p", "--progress"); - nupp.RegisterDescription("--progress-interval", "Print digestion progress reports every these many blocks."); + nupp.RegisterDescription("--progress-interval", "Print digestion progress reports every these many data blocks."); nupp.RegisterConstraint("--progress-interval", ParamConstraint(true, DATA_TYPE::INT, { "1000" }, true, {})); nupp.RegisterDescription("--iobase-bytes", "Interpret and output ciphertexts as raw bytes.");