Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 May 2022 14:54:01 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 89e58b955cf5 - main - rc: Fix quoting in the zpoolreguid script
Message-ID:  <202205311454.24VEs1Np034034@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=89e58b955cf5d2187af5f2460d11b64f4d229c8a

commit 89e58b955cf5d2187af5f2460d11b64f4d229c8a
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-05-31 14:51:28 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-05-31 14:51:28 +0000

    rc: Fix quoting in the zpoolreguid script
    
    Reported by:    0mp
    Fixes:          227caacc918a ("rc: Add a zpoolreguid rc.d script")
    Sponsored by:   The FreeBSD Foundation
---
 libexec/rc/rc.d/zpoolreguid | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libexec/rc/rc.d/zpoolreguid b/libexec/rc/rc.d/zpoolreguid
index 83c703d5d6c4..77ecac13ad5a 100755
--- a/libexec/rc/rc.d/zpoolreguid
+++ b/libexec/rc/rc.d/zpoolreguid
@@ -16,7 +16,7 @@ zpoolreguid_start()
 {
 	local pool
 
-	for pool in "${zpool_reguid}"; do
+	for pool in ${zpool_reguid}; do
 		zpool reguid $pool
 	done
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202205311454.24VEs1Np034034>