From: Steven Baigal (sbaigal) Date: Tue, 20 Sep 2022 14:01:49 +0000 (+0000) Subject: Pull request #3592: memory: fix typo in peg counter help text X-Git-Tag: 3.1.42.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d89eaa189c928ff495df0ca190b521894f4eda24;p=thirdparty%2Fsnort3.git Pull request #3592: memory: fix typo in peg counter help text Merge in SNORT/snort3 from ~AKAYAMBU/snort3:memorypegs to master Squashed commit of the following: commit b6663aba460444a11d2cc1e6bb4e94f52ad98892 Author: Arunkumar Kayambu Date: Sat Sep 17 16:40:43 2022 -0400 memory: fix typo in peg counter help text --- diff --git a/src/memory/memory_module.cc b/src/memory/memory_module.cc index 5cf307953..cedabc5f4 100644 --- a/src/memory/memory_module.cc +++ b/src/memory/memory_module.cc @@ -57,10 +57,10 @@ const PegInfo mem_pegs[] = { CountType::NOW, "allocations", "total number of allocations" }, { CountType::NOW, "deallocations", "total number of deallocations" }, { CountType::NOW, "allocated", "total amount of memory allocated" }, - { CountType::NOW, "deallocated", "total amount of memory allocated" }, + { CountType::NOW, "deallocated", "total amount of memory deallocated" }, { CountType::NOW, "reap_attempts", "attempts to reclaim memory" }, { CountType::NOW, "reap_failures", "failures to reclaim memory" }, - { CountType::MAX, "max_in_use", "highest allocated - deallocated" }, + { CountType::MAX, "max_in_use", "maximum memory used" }, { CountType::END, nullptr, nullptr } };