From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 070D01382C5 for ; Sun, 31 May 2020 06:05:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43952E0880; Sun, 31 May 2020 06:05:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94330E0880 for ; Sun, 31 May 2020 06:05:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E03534EBB6 for ; Sun, 31 May 2020 06:05:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4691531 for ; Sun, 31 May 2020 06:05:12 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1590904367.dea30db8062977dc9b8a2c8611f09cf8c891d36f.robbat2@OpenRC> Subject: [gentoo-commits] proj/netifrc:master commit in: net/ X-VCS-Repository: proj/netifrc X-VCS-Files: net/ip6to4.sh X-VCS-Directories: net/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: dea30db8062977dc9b8a2c8611f09cf8c891d36f X-VCS-Branch: master Date: Sun, 31 May 2020 06:05:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bb640e3a-e8cc-4e04-8e95-bf3cb30c5ec0 X-Archives-Hash: 0f19856dddb65b792c4df820340d0e42 commit: dea30db8062977dc9b8a2c8611f09cf8c891d36f Author: Robin H. Johnson gentoo org> AuthorDate: Sun May 31 05:52:43 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun May 31 05:52:47 2020 +0000 URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=dea30db8 net/ip6to4: partial fix for bug #528314 netifrc has never clearly documented exactly what shell is targeted, and this bug does not occur on any shell that supports the 'local' keyword. Reference: https://bugs.gentoo.org/528314 Signed-off-by: Robin H. Johnson gentoo.org> net/ip6to4.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ip6to4.sh b/net/ip6to4.sh index 21acd71..6b573d1 100644 --- a/net/ip6to4.sh +++ b/net/ip6to4.sh @@ -103,8 +103,8 @@ ip6to4_pre_start() ip6to4_start() { - local config_ip6to4=$(service_get_value "config_ip6to4_$IFVAR") - local routes_ip6to4=$(service_get_value "routes_ip6to4_$IFVAR") + local config_ip6to4="$(service_get_value "config_ip6to4_$IFVAR")" + local routes_ip6to4="$(service_get_value "routes_ip6to4_$IFVAR")" # Now apply our config eval config_${config_index}=\'"${config_ip6to4}"\'