From 3f080f7db6f68adf882d9d71840cf1e09a707802 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 24 Feb 2022 11:36:58 +0100 Subject: [PATCH] s3:script: Fix shellcheck errors in dlopen.sh MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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ý --- source3/script/tests/dlopen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "") ;; -- 2.47.3