aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/firejail/landlock.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/firejail/landlock.c b/src/firejail/landlock.c
index 27fc1d748..52a562d6e 100644
--- a/src/firejail/landlock.c
+++ b/src/firejail/landlock.c
@@ -70,12 +70,12 @@ int ll_is_supported(void) {
70 ll_abi = 0; 70 ll_abi = 0;
71 fprintf(stderr, "Warning: Landlock is disabled or not supported: %s, " 71 fprintf(stderr, "Warning: Landlock is disabled or not supported: %s, "
72 "ignoring landlock commands\n", 72 "ignoring landlock commands\n",
73 strerror(errno)); 73 strerror(errno));
74 goto out; 74 goto out;
75 } 75 }
76 if (arg_debug) { 76
77 if (arg_debug)
77 printf("Detected Landlock ABI version %d\n", ll_abi); 78 printf("Detected Landlock ABI version %d\n", ll_abi);
78 }
79out: 79out:
80 return ll_abi; 80 return ll_abi;
81} 81}