Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2019-12-18 14:17:46 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-12-18 14:17:46 +0300
commit09f29a5e64d4eb0fbbec2a0a503fa173a973b898 (patch)
tree18631dc8b10382e2eddb633d7fbcd03f3c87dbd1 /include/tests_memory_processes
parent94ba30e765d02ce638e01d731882f8b7086506e2 (diff)
Code style improvement: quote argument
Diffstat (limited to 'include/tests_memory_processes')
-rw-r--r--include/tests_memory_processes4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tests_memory_processes b/include/tests_memory_processes
index fc1789dc..6c1bf558 100644
--- a/include/tests_memory_processes
+++ b/include/tests_memory_processes
@@ -85,7 +85,7 @@
LogText "Result: found one or more dead or zombie processes"
LogText "Output: PIDs ${FIND}"
Display --indent 2 --text "- Searching for dead/zombie processes" --result "${STATUS_FOUND}" --color RED
- ReportSuggestion ${TEST_NO} "Check the output of ps for dead or zombie processes"
+ ReportSuggestion "${TEST_NO}" "Check the output of ps for dead or zombie processes"
fi
fi
#
@@ -110,7 +110,7 @@
LogText "More info: processes which show up with the status flag 'D' are often stuck, until a disk IO event finished. This can happen for example with network storage, where the connection or protocol settings are not logtext well configured."
LogText "Output: PIDs ${FIND}"
Display --indent 2 --text "- Searching for IO waiting processes" --result "${STATUS_FOUND}" --color RED
- ReportSuggestion ${TEST_NO} "Check process listing for processes waiting for IO requests"
+ ReportSuggestion "${TEST_NO}" "Check process listing for processes waiting for IO requests"
fi
fi
#