From 37f9dcb8ccc1416a89cfb40d4f54bbd2f054a24b Mon Sep 17 00:00:00 2001 From: Alexander Lobodzinski Date: Mon, 14 Sep 2015 19:38:00 +0200 Subject: [PATCH] Bugfix for BSD: unrelated variable got logged instead of umask --- include/tests_authentication | 4 ++-- 1 file 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