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:
authormboelen <michael@cisofy.com>2015-03-25 18:48:39 +0300
committermboelen <michael@cisofy.com>2015-03-25 18:48:39 +0300
commite1d96752f20e4ffaa8034167d40b229f42ce8416 (patch)
treeba2d5d3b1b8a1edd38e7606915b6618026d93820 /include/tests_hardening
parent5ecbaafa4faff3d3fb6dcbcd8f72308ee15dc490 (diff)
Removed variable
Diffstat (limited to 'include/tests_hardening')
-rw-r--r--include/tests_hardening4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tests_hardening b/include/tests_hardening
index 055cd4b5..ad10e568 100644
--- a/include/tests_hardening
+++ b/include/tests_hardening
@@ -54,7 +54,7 @@
logtext "Test: Check file permissions for as (Assembler)"
IsWorldExecutable ${ASBINARY}
if [ $? -eq 1 ]; then
- logtext "Binary: ${ASBINARY} (world executable: ${FileIsWorldExecutable})"
+ logtext "Binary: found ${ASBINARY} (world executable)"
AddHP 2 3
HARDEN_COMPILERS_NEEDED=1
else
@@ -66,7 +66,7 @@
logtext "Test: Check file permissions for GCC compiler"
IsWorldExecutable ${GCCBINARY}
if [ $? -eq 1 ]; then
- logtext "Binary: ${GCCBINARY} (world executable: ${FileIsWorldExecutable})"
+ logtext "Binary: found ${GCCBINARY} (world executable)"
AddHP 2 3
HARDEN_COMPILERS_NEEDED=1
else