From f35a08ad28568f7e80d3a7f9ceeaa8203fec82fb Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Fri, 13 Dec 2019 12:40:29 +0100 Subject: [PATCH] Quoting should not be used when globbing --- include/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/functions b/include/functions index 2094e989..de40a427 100644 --- a/include/functions +++ b/include/functions @@ -1290,7 +1290,7 @@ if [ -n "${STATBINARY}" ]; then case ${OS} in - "*BSD") + *BSD) DATA=$(${STATBINARY} -f "%OLp" ${CHECKFILE}) ;; *) @@ -1305,7 +1305,7 @@ # See if we can use the find binary if [ -z "${DATA}" ]; then case ${OS} in - "AIX" | "*BSD") + "AIX" | *BSD) Debug "Skipping find command, as this operating system does not support -printf parameter" ;; *)