Merge pull request #77 from alobodzinski/umask-value

Unrelated variable got logged instead of umask
This commit is contained in:
Michael Boelen 2015-09-16 17:03:12 +02:00
commit 37487c10ea
1 changed files with 2 additions and 2 deletions

View File

@ -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