From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-955138-garchives=archives.gentoo.org@lists.gentoo.org>
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 8D647139694
	for <garchives@archives.gentoo.org>; Mon, 12 Jun 2017 15:41:53 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 9A166E0EC3;
	Mon, 12 Jun 2017 15:41:52 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(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 7572AE0EC7
	for <gentoo-commits@lists.gentoo.org>; Mon, 12 Jun 2017 15:41:52 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(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 69E9A341931
	for <gentoo-commits@lists.gentoo.org>; Mon, 12 Jun 2017 15:41:51 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id C44AD747F
	for <gentoo-commits@lists.gentoo.org>; Mon, 12 Jun 2017 15:41:49 +0000 (UTC)
From: "William Hubbs" <williamh@gentoo.org>
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" <williamh@gentoo.org>
Message-ID: <1496934259.11243f85b67e5f450ddf50346ffd4a1b2c6faeb5.williamh@OpenRC>
Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/
X-VCS-Repository: proj/openrc
X-VCS-Files: src/rc/kill_all.c
X-VCS-Directories: src/rc/
X-VCS-Committer: williamh
X-VCS-Committer-Name: William Hubbs
X-VCS-Revision: 11243f85b67e5f450ddf50346ffd4a1b2c6faeb5
X-VCS-Branch: master
Date: Mon, 12 Jun 2017 15:41:49 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: ff94bcb5-bc90-477c-9d7e-be1d6d65c81b
X-Archives-Hash: 77dcab470f8bf9d22b07d74fdf383c05

commit:     11243f85b67e5f450ddf50346ffd4a1b2c6faeb5
Author:     Jory A. Pratt <anarchy <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  8 14:14:10 2017 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Jun  8 15:04:19 2017 +0000
URL:        https://gitweb.gentoo.org/proj/openrc.git/commit/?id=11243f85

kill_all: include limits.h for PATH_MAX

 src/rc/kill_all.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/rc/kill_all.c b/src/rc/kill_all.c
index a4b15c87..f3500227 100644
--- a/src/rc/kill_all.c
+++ b/src/rc/kill_all.c
@@ -19,6 +19,7 @@
 #include <dirent.h>
 #include <errno.h>
 #include <getopt.h>
+#include <limits.h>
 #include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>