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 7141613877A for ; Wed, 16 Jul 2014 19:17:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50D3CE0978; Wed, 16 Jul 2014 19:17:51 +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 E3AA8E0978 for ; Wed, 16 Jul 2014 19:17:50 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA69E3400A2 for ; Wed, 16 Jul 2014 19:17:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 90DD51807D for ; Wed, 16 Jul 2014 19:17:48 +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: <1405538077.010c2ab18b4be2068237cf0db97e9348bba65ac6.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/Makefile src/rc/checkpath.c src/rc/rc-selinux-util.c src/rc/rc-selinux-util.h src/rc/rc-selinux.c src/rc/rc-selinux.h X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 010c2ab18b4be2068237cf0db97e9348bba65ac6 X-VCS-Branch: master Date: Wed, 16 Jul 2014 19:17:48 +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: 3b05d5fd-b243-4a23-a002-9d3ff20586cc X-Archives-Hash: 34503e28c76e367a219fd9efcf8f1d33 commit: 010c2ab18b4be2068237cf0db97e9348bba65ac6 Author: William Hubbs gmail com> AuthorDate: Wed Jul 16 19:14:37 2014 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Jul 16 19:14:37 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=010c2ab1 Rename SELinux source files The name rc-selinux-util.* is a bit long, so I renamed the source files to rc-selinux.* X-Gentoo-Bug: 516956 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=516956 --- src/rc/Makefile | 4 ++-- src/rc/checkpath.c | 2 +- src/rc/{rc-selinux-util.c => rc-selinux.c} | 2 +- src/rc/{rc-selinux-util.h => rc-selinux.h} | 0 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rc/Makefile b/src/rc/Makefile index fb5265c..609794a 100644 --- a/src/rc/Makefile +++ b/src/rc/Makefile @@ -5,10 +5,10 @@ SRCS= checkpath.c fstabinfo.c mountinfo.c start-stop-daemon.c \ runscript.c rc.c swclock.c ifeq (${MKSELINUX},yes) -SRCS+= rc-selinux-util.c +SRCS+= rc-selinux.c endif -CLEANFILES= version.h rc-selinux-util.o +CLEANFILES= version.h rc-selinux.o BINDIR= ${PREFIX}/bin SBINDIR= ${PREFIX}/sbin diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c index 6945b67..b0384bd 100644 --- a/src/rc/checkpath.c +++ b/src/rc/checkpath.c @@ -47,7 +47,7 @@ #include "rc-misc.h" #ifdef HAVE_SELINUX -#include "rc-selinux-util.h" +#include "rc-selinux.h" #endif typedef enum { diff --git a/src/rc/rc-selinux-util.c b/src/rc/rc-selinux.c similarity index 99% rename from src/rc/rc-selinux-util.c rename to src/rc/rc-selinux.c index 6cbb5db..8e780c9 100644 --- a/src/rc/rc-selinux-util.c +++ b/src/rc/rc-selinux.c @@ -36,7 +36,7 @@ #include #include -#include "rc-selinux-util.h" +#include "rc-selinux.h" static struct selabel_handle *hnd = NULL; diff --git a/src/rc/rc-selinux-util.h b/src/rc/rc-selinux.h similarity index 100% rename from src/rc/rc-selinux-util.h rename to src/rc/rc-selinux.h