aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/fs.c')
-rw-r--r--src/firejail/fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firejail/fs.c b/src/firejail/fs.c
index b44eb65ee..3066c50ed 100644
--- a/src/firejail/fs.c
+++ b/src/firejail/fs.c
@@ -162,7 +162,7 @@ static void disable_file(OPERATION op, const char *filename) {
162 fs_logger2("blacklist-nolog", fname); 162 fs_logger2("blacklist-nolog", fname);
163 163
164 // files in /etc will be reprocessed during /etc rebuild 164 // files in /etc will be reprocessed during /etc rebuild
165 if (strncmp(fname, "/etc/", 5) == 0) { 165 if (checkcfg(CFG_ETC_NO_BLACKLISTED) && strncmp(fname, "/etc/", 5) == 0) {
166 ProfileEntry *prf = malloc(sizeof(ProfileEntry)); 166 ProfileEntry *prf = malloc(sizeof(ProfileEntry));
167 if (!prf) 167 if (!prf)
168 errExit("malloc"); 168 errExit("malloc");