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@cisofy.com>2015-09-16 18:03:12 +0300
committerMichael Boelen <michael@cisofy.com>2015-09-16 18:03:12 +0300
commit37487c10eab786d8e2fd4d322117845a4348b7e6 (patch)
tree07653c6dc469149ebcf21e634fcb5f2e8f3d5b81
parentae0e24aace993a4238514e7d2e01f5a6e9a54660 (diff)
parent37f9dcb8ccc1416a89cfb40d4f54bbd2f054a24b (diff)
Merge pull request #77 from alobodzinski/umask-value
Unrelated variable got logged instead of umask
-rw-r--r--include/tests_authentication4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tests_authentication b/include/tests_authentication
index ad24a432..df4f3cb7 100644
--- a/include/tests_authentication
+++ b/include/tests_authentication
@@ -955,7 +955,7 @@
for UMASK_VALUE in ${FIND}; do
case ${UMASK_VALUE} in
027|0027|077|0077)
- logtext "Result: found umask value ${VALUE}, which is fine"
+ logtext "Result: found umask value ${UMASK_VALUE}, which is fine"
AddHP 2 2
FOUND=1
;;
@@ -963,7 +963,7 @@
AddHP 0 2
FOUND=1
WEAK_UMASK=1
- logtext "Result: found umask value ${VALUE}, which can be more strict"
+ logtext "Result: found umask value ${UMASK_VALUE}, which can be more strict"
;;
esac
done