From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A90E21388C3 for ; Thu, 14 Jan 2016 17:33:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83135E07B2; Thu, 14 Jan 2016 17:33:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2ADAE080E for ; Thu, 14 Jan 2016 17:33:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C8EE340B37 for ; Thu, 14 Jan 2016 17:33:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D9EFE68 for ; Thu, 14 Jan 2016 17:33:25 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1452735262.6f02069746f4d8a2331ab7e000abdca9bbdd622d.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/rc-misc.c X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 6f02069746f4d8a2331ab7e000abdca9bbdd622d X-VCS-Branch: master Date: Thu, 14 Jan 2016 17:33:25 +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-Archives-Salt: 0f176182-b293-404b-aecf-62248ec3d5d8 X-Archives-Hash: e34cc20742821208891431077087bbf1 commit: 6f02069746f4d8a2331ab7e000abdca9bbdd622d Author: William Hubbs gmail com> AuthorDate: Thu Jan 14 01:34:22 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Jan 14 01:34:22 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=6f020697 Add LANG, LC_MESSAGES and TERM to the environment whitelist src/rc/rc-misc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rc/rc-misc.c b/src/rc/rc-misc.c index f01d1f8..2c6c388 100644 --- a/src/rc/rc-misc.c +++ b/src/rc/rc-misc.c @@ -53,6 +53,7 @@ rc_conf_yesno(const char *setting) static const char *const env_whitelist[] = { "EERROR_QUIET", "EINFO_QUIET", "IN_BACKGROUND", "IN_HOTPLUG", + "LANG", "LC_MESSAGES", "TERM", NULL };