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 2B89B138330 for ; Fri, 16 Sep 2016 13:58:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C255E0AAA; Fri, 16 Sep 2016 13:58:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2F9B5E0AAA for ; Fri, 16 Sep 2016 13:58:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BBA9A340AF0 for ; Fri, 16 Sep 2016 13:58:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B07D22481 for ; Fri, 16 Sep 2016 13:58:08 +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: <1473907736.1edb5f6fd9c4827e5d4ed5c854bc322ba8a7df73.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: 1edb5f6fd9c4827e5d4ed5c854bc322ba8a7df73 X-VCS-Branch: master Date: Fri, 16 Sep 2016 13:58:08 +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: 89ca6c03-afb0-4635-b72e-5dfc67341608 X-Archives-Hash: 91ecde060cade1a5adc8c3008b8ec1dc commit: 1edb5f6fd9c4827e5d4ed5c854bc322ba8a7df73 Author: Doug Freed mtu edu> AuthorDate: Thu Sep 15 02:48:56 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Sep 15 02:48:56 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=1edb5f6f rc-misc: Allow EINFO_COLOR through env_filter() This allows rc-service -C to properly not print color messages. Fixes #93 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 85a0db7..508e116 100644 --- a/src/rc/rc-misc.c +++ b/src/rc/rc-misc.c @@ -53,6 +53,7 @@ static const char *const env_whitelist[] = { "EERROR_QUIET", "EINFO_QUIET", "IN_BACKGROUND", "IN_HOTPLUG", "LANG", "LC_MESSAGES", "TERM", + "EINFO_COLOR", NULL };