From 6c1d48b0186f4df40787349d37b35d822e043289 Mon Sep 17 00:00:00 2001 From: David Steele Date: Tue, 11 Sep 2018 10:55:55 -0400 Subject: [PATCH] Command-line help update missed in cabb3f857. --- src/config/define.auto.c | 6 +++++- test/src/module/help/helpTest.c | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/config/define.auto.c b/src/config/define.auto.c index 48e6a2b4e..7d0e2391c 100644 --- a/src/config/define.auto.c +++ b/src/config/define.auto.c @@ -510,7 +510,11 @@ static ConfigDefineOptionData configDefineOptionData[] = CFGDEFDATA_OPTION_LIST "Set the buffer size used for copy, compress, and uncompress functions. A maximum of 3 buffers will be in use at a " "time per process. An additional maximum of 256K per process may be used for zlib buffers.\n" "\n" - "Size can be entered in bytes (default) or KB, MB, GB, TB, or PB where the multiplier is a power of 1024." + "Size can be entered in bytes (default) or KB, MB, GB, TB, or PB where the multiplier is a power of 1024. For example, " + "the case-insensitive value 32k (or 32KB) can be used instead of 32768.\n" + "\n" + "Allowed values, in bytes, are 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, and " + "16777216." ) CFGDEFDATA_OPTION_COMMAND_LIST diff --git a/test/src/module/help/helpTest.c b/test/src/module/help/helpTest.c index 7f3a9c8be..7440bb523 100644 --- a/test/src/module/help/helpTest.c +++ b/test/src/module/help/helpTest.c @@ -260,7 +260,11 @@ testRun(void) "maximum of 256K per process may be used for zlib buffers.\n" "\n" "Size can be entered in bytes (default) or KB, MB, GB, TB, or PB where the\n" - "multiplier is a power of 1024.\n", + "multiplier is a power of 1024. For example, the case-insensitive value 32k (or\n" + "32KB) can be used instead of 32768.\n" + "\n" + "Allowed values, in bytes, are 16384, 32768, 65536, 131072, 262144, 524288,\n" + "1048576, 2097152, 4194304, 8388608, and 16777216.\n", helpVersion)); argList = strLstNew();