aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2017-03-31 11:05:05 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2017-03-31 11:05:05 -0400
commit0386d562f44ebf612980c7d779336e967973f9c5 (patch)
tree00f3aa219495c984b6468c5af3723220401abd8b /src
parentrestrict more KDE files (#1181) (diff)
downloadfirejail-0386d562f44ebf612980c7d779336e967973f9c5.tar.gz
firejail-0386d562f44ebf612980c7d779336e967973f9c5.tar.zst
firejail-0386d562f44ebf612980c7d779336e967973f9c5.zip
testing
Diffstat (limited to 'src')
-rw-r--r--src/firejail/fs_whitelist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/firejail/fs_whitelist.c b/src/firejail/fs_whitelist.c
index 7ad5ffeb8..59dff5517 100644
--- a/src/firejail/fs_whitelist.c
+++ b/src/firejail/fs_whitelist.c
@@ -438,8 +438,8 @@ void fs_whitelist(void) {
438 if (strncmp(new_name, cfg.homedir, strlen(cfg.homedir)) == 0) { 438 if (strncmp(new_name, cfg.homedir, strlen(cfg.homedir)) == 0) {
439 // whitelisting home directory is disabled if --private option is present 439 // whitelisting home directory is disabled if --private option is present
440 if (arg_private) { 440 if (arg_private) {
441 if (arg_debug || arg_debug_whitelists) 441 if (!arg_quiet)
442 printf("Removed whitelist path %s, --private option is present\n", entry->data); 442 printf("Warning: \"%s\" disabled by --private\n", entry->data);
443 443
444 *entry->data = '\0'; 444 *entry->data = '\0';
445 continue; 445 continue;