From d9ebb77c11e11cf0d3cbbbc6943d5941c89a004a Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 13 Jun 2022 15:57:35 +0200 Subject: [PATCH] testprogs: Fix shellcheck errors in test_kpasswd_heimdal.sh MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit testprogs/blackbox/test_kpasswd_heimdal.sh:46:57: error: Double quote array expansions to avoid re-splitting elements. [SC2068] Signed-off-by: Andreas Schneider Reviewed-by: Pavel Filipenský --- testprogs/blackbox/test_kpasswd_heimdal.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testprogs/blackbox/test_kpasswd_heimdal.sh b/testprogs/blackbox/test_kpasswd_heimdal.sh index 0585e7b4d69..b401eec9ba8 100755 --- a/testprogs/blackbox/test_kpasswd_heimdal.sh +++ b/testprogs/blackbox/test_kpasswd_heimdal.sh @@ -45,7 +45,7 @@ do_kinit() password="$2" shift shift - kerberos_kinit "$samba_kinit" "$principal" "$password" $@ + kerberos_kinit "$samba_kinit" "$principal" "$password" "$@" } UID_WRAPPER_ROOT=1 -- 2.34.1