Quoting should not be used when globbing

This commit is contained in:
Michael Boelen 2019-12-13 12:40:29 +01:00
parent 700e0823de
commit f35a08ad28
No known key found for this signature in database
GPG Key ID: 26141F77A09D7F04
1 changed files with 2 additions and 2 deletions

View File

@ -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"
;;
*)