diff --git a/src/rc/Makefile b/src/rc/Makefile index fb5265c6..609794a8 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 6945b670..b0384bdb 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 6cbb5db9..8e780c97 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