Jon West | 1fd6030 | 2018-08-11 19:14:03 -0400 | [diff] [blame^] | 1 | From d3596d698dfe03369f8947b7da1bed260159426c Mon Sep 17 00:00:00 2001 |
Pierre-Hugues Husson | c0ca67e | 2018-03-22 20:31:17 +0100 | [diff] [blame] | 2 | From: Pierre-Hugues Husson <phh@phh.me> |
| 3 | Date: Fri, 2 Mar 2018 22:49:55 +0100 |
Jon West | 1fd6030 | 2018-08-11 19:14:03 -0400 | [diff] [blame^] | 4 | Subject: [PATCH 1/2] Enable multipl_decls by default. This is needed because |
Pierre-Hugues Husson | c0ca67e | 2018-03-22 20:31:17 +0100 | [diff] [blame] | 5 | 8.0 init doesn't add -m |
| 6 | |
| 7 | Change-Id: I43dc661d519f7b8576d72a828d8cbd444592bf5e |
| 8 | --- |
| 9 | secilc/secilc.c | 2 +- |
| 10 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 11 | |
| 12 | diff --git a/secilc/secilc.c b/secilc/secilc.c |
Jon West | 1fd6030 | 2018-08-11 19:14:03 -0400 | [diff] [blame^] | 13 | index 0be6975b..e30572e5 100644 |
Pierre-Hugues Husson | c0ca67e | 2018-03-22 20:31:17 +0100 | [diff] [blame] | 14 | --- a/secilc/secilc.c |
| 15 | +++ b/secilc/secilc.c |
| 16 | @@ -90,7 +90,7 @@ int main(int argc, char *argv[]) |
| 17 | int target = SEPOL_TARGET_SELINUX; |
| 18 | int mls = -1; |
| 19 | int disable_dontaudit = 0; |
| 20 | - int multiple_decls = 0; |
| 21 | + int multiple_decls = 1; |
| 22 | int disable_neverallow = 0; |
| 23 | int preserve_tunables = 0; |
| 24 | int handle_unknown = -1; |
| 25 | -- |
Jon West | 1fd6030 | 2018-08-11 19:14:03 -0400 | [diff] [blame^] | 26 | 2.17.1 |
Pierre-Hugues Husson | c0ca67e | 2018-03-22 20:31:17 +0100 | [diff] [blame] | 27 | |