From: Andreas Schneider Date: Thu, 24 Feb 2022 10:36:58 +0000 (+0100) Subject: s3:script: Fix shellcheck errors in dlopen.sh X-Git-Tag: talloc-2.4.0~1381 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f080f7db6f68adf882d9d71840cf1e09a707802;p=thirdparty%2Fsamba.git s3:script: Fix shellcheck errors in dlopen.sh source3/script/tests/dlopen.sh:51:12: error: Double quote array expansions to avoid re-splitting elements. [SC2068] Signed-off-by: Andreas Schneider Reviewed-by: Pavel Filipenský --- diff --git a/source3/script/tests/dlopen.sh b/source3/script/tests/dlopen.sh index de54d6dde39..a1299b20fb1 100755 --- a/source3/script/tests/dlopen.sh +++ b/source3/script/tests/dlopen.sh @@ -48,7 +48,7 @@ int main(int argc, char **argv) } _EOF -for arg in $@; do +for arg in "$@"; do case "$arg" in "") ;;