From 098b60efce4f9924b268949fd9fdaa31b0ebe0ff Mon Sep 17 00:00:00 2001 From: Thibault Godouet Date: Fri, 27 Dec 2024 16:05:37 +0000 Subject: [PATCH] Stop using the SELinux deprecated security_context_t --- global.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.h b/global.h index 1e328fd..0b1feef 100644 --- a/global.h +++ b/global.h @@ -198,8 +198,8 @@ typedef struct cf_t { int cf_running; /* number of jobs running */ signed char cf_tzdiff; /* time diff between system and local hour */ #ifdef WITH_SELINUX - security_context_t cf_user_context; - security_context_t cf_file_context; + char *cf_user_context; + char *cf_file_context; #endif } cf_t; -- 2.47.3