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 8DBB4138334 for ; Thu, 14 Jun 2018 19:56:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CCCDE08A2; Thu, 14 Jun 2018 19:56:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4AD88E08A2 for ; Thu, 14 Jun 2018 19:56:21 +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 5F5DB335C63 for ; Thu, 14 Jun 2018 19:56:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B136228D for ; Thu, 14 Jun 2018 19:56:16 +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: <1529006142.d4501a9f06c807f87be04f128e535a74b370fdb4.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/rc-pipes.c X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: d4501a9f06c807f87be04f128e535a74b370fdb4 X-VCS-Branch: master Date: Thu, 14 Jun 2018 19:56:16 +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: 3d7026ca-9793-4278-956c-c6e813c22b00 X-Archives-Hash: 6947602a57bbceaa942df75732f4ff21 commit: d4501a9f06c807f87be04f128e535a74b370fdb4 Author: William Hubbs gmail com> AuthorDate: Thu Jun 14 19:55:42 2018 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Jun 14 19:55:42 2018 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=d4501a9f fix a typo src/rc/rc-pipes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rc/rc-pipes.c b/src/rc/rc-pipes.c index 55f3ff8d..2d7b623e 100644 --- a/src/rc/rc-pipes.c +++ b/src/rc/rc-pipes.c @@ -19,7 +19,7 @@ #include #include -#include "rc-pipe-command.h" +#include "rc-pipes.h" static const int pipe_read_end = 0; static const int pipe_write_end = 1;