aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/firejail/checkcfg.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/firejail/checkcfg.c b/src/firejail/checkcfg.c
index eb4841210..94a6572b6 100644
--- a/src/firejail/checkcfg.c
+++ b/src/firejail/checkcfg.c
@@ -352,6 +352,14 @@ void print_compiletime_support(void) {
352#endif 352#endif
353 ); 353 );
354 354
355 printf("\t- SELinux support is %s\n",
356#ifdef HAVE_SELINUX
357 "enabled"
358#else
359 "disabled"
360#endif
361 );
362
355 printf("\t- user namespace support is %s\n", 363 printf("\t- user namespace support is %s\n",
356#ifdef HAVE_USERNS 364#ifdef HAVE_USERNS
357 "enabled" 365 "enabled"