From b8ab99b5d3ee1a93f215157c36fb120857afde64 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 25 Mar 2015 08:33:42 -0500 Subject: [PATCH] checkpath: Remove the last HAVE_SELINUX test --- src/rc/checkpath.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c index 3acb0406..a8a1c750 100644 --- a/src/rc/checkpath.c +++ b/src/rc/checkpath.c @@ -161,10 +161,8 @@ static int do_check(char *path, uid_t uid, gid_t gid, mode_t mode, } } -#ifdef HAVE_SELINUX if (selinux_on) selinux_util_label(path); -#endif return 0; }