aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2022-09-04 11:02:08 -0400
committerLibravatar netblue30 <netblue30@protonmail.com>2022-09-04 11:02:08 -0400
commit2f3c19a87dd49b220f69f27f8c14c627277355d6 (patch)
treeb9855f1ac1b969c0c073f2ca722e8bece00e8246 /src
parentlandlock: check for landlock support in glibc (diff)
downloadfirejail-2f3c19a87dd49b220f69f27f8c14c627277355d6.tar.gz
firejail-2f3c19a87dd49b220f69f27f8c14c627277355d6.tar.zst
firejail-2f3c19a87dd49b220f69f27f8c14c627277355d6.zip
landlock: support in firejail --version
Diffstat (limited to 'src')
-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 62b8c4dc4..fd2f3621e 100644
--- a/src/firejail/checkcfg.c
+++ b/src/firejail/checkcfg.c
@@ -378,6 +378,14 @@ void print_compiletime_support(void) {
378#endif 378#endif
379 ); 379 );
380 380
381 printf("\t- Landlock support is %s\n",
382#ifdef HAVE_LANDLOCK
383 "enabled"
384#else
385 "disabled"
386#endif
387 );
388
381 printf("\t- networking support is %s\n", 389 printf("\t- networking support is %s\n",
382#ifdef HAVE_NETWORK 390#ifdef HAVE_NETWORK
383 "enabled" 391 "enabled"