aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/profile.c
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2020-10-28 09:18:18 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2020-10-28 09:18:18 -0400
commit65911742d70fbe287fc9d0e6f2c9a92e2b6657de (patch)
tree3e896a6d85513059c3c6322865e3f0200b28613b /src/firejail/profile.c
parentprofile fixes (diff)
downloadfirejail-65911742d70fbe287fc9d0e6f2c9a92e2b6657de.tar.gz
firejail-65911742d70fbe287fc9d0e6f2c9a92e2b6657de.tar.zst
firejail-65911742d70fbe287fc9d0e6f2c9a92e2b6657de.zip
added bluetooth to the list of protocols allowed by seccomp
Diffstat (limited to 'src/firejail/profile.c')
-rw-r--r--src/firejail/profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firejail/profile.c b/src/firejail/profile.c
index 11a74ddd3..5ddf6fdbb 100644
--- a/src/firejail/profile.c
+++ b/src/firejail/profile.c
@@ -895,7 +895,7 @@ int profile_check_line(char *ptr, int lineno, const char *fname) {
895 if (strncmp(ptr, "protocol ", 9) == 0) { 895 if (strncmp(ptr, "protocol ", 9) == 0) {
896 if (checkcfg(CFG_SECCOMP)) { 896 if (checkcfg(CFG_SECCOMP)) {
897 if (cfg.protocol) { 897 if (cfg.protocol) {
898 fwarning("two protocol lists are present, \"%s\" will be installed\n", cfg.protocol); 898 fwarning("more than one protocol list is present, \"%s\" will be installed\n", cfg.protocol);
899 return 0; 899 return 0;
900 } 900 }
901 901