aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/checkcfg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/checkcfg.c')
-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 c3eedc510..73fa6e46b 100644
--- a/src/firejail/checkcfg.c
+++ b/src/firejail/checkcfg.c
@@ -351,6 +351,13 @@ void print_compiletime_support(void) {
351#endif 351#endif
352 ); 352 );
353 353
354 printf("\t- git install support is %s\n",
355#ifdef HAVE_GIT_INSTALL
356 "enabled"
357#else
358 "disabled"
359#endif
360 );
354 361
355#ifdef HAVE_NETWORK_RESTRICTED 362#ifdef HAVE_NETWORK_RESTRICTED
356 printf("\t- networking features are available only to root user\n"); 363 printf("\t- networking features are available only to root user\n");
@@ -395,4 +402,5 @@ void print_compiletime_support(void) {
395 "disabled" 402 "disabled"
396#endif 403#endif
397 ); 404 );
405
398} 406}