28 lines
788 B
Diff
28 lines
788 B
Diff
From ddbe45ddd09f30beab8980d14c506f48ca1f8399 Mon Sep 17 00:00:00 2001
|
|
From: Pierre-Hugues Husson <phh@phh.me>
|
|
Date: Fri, 2 Mar 2018 22:49:55 +0100
|
|
Subject: [PATCH 01/10] Enable multipl_decls by default. This is needed because
|
|
8.0 init doesn't add -m
|
|
|
|
Change-Id: I43dc661d519f7b8576d72a828d8cbd444592bf5e
|
|
---
|
|
secilc/secilc.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/secilc/secilc.c b/secilc/secilc.c
|
|
index 186c5a73..b422175e 100644
|
|
--- a/secilc/secilc.c
|
|
+++ b/secilc/secilc.c
|
|
@@ -91,7 +91,7 @@ int main(int argc, char *argv[])
|
|
int target = SEPOL_TARGET_SELINUX;
|
|
int mls = -1;
|
|
int disable_dontaudit = 0;
|
|
- int multiple_decls = 0;
|
|
+ int multiple_decls = 1;
|
|
int disable_neverallow = 0;
|
|
int preserve_tunables = 0;
|
|
int handle_unknown = -1;
|
|
--
|
|
2.17.1
|
|
|