aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/profile.c
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2022-06-19 13:24:29 -0400
committerLibravatar netblue30 <netblue30@protonmail.com>2022-06-19 13:24:29 -0400
commit4d79566ae3cef90700264f962837887a2d26fcf2 (patch)
tree154c0fc83b0cb222f07ec38d6c0ea94418676fc4 /src/firejail/profile.c
parentremoving guess_shell() function and using instead the shell configured in the... (diff)
downloadfirejail-4d79566ae3cef90700264f962837887a2d26fcf2.tar.gz
firejail-4d79566ae3cef90700264f962837887a2d26fcf2.tar.zst
firejail-4d79566ae3cef90700264f962837887a2d26fcf2.zip
shell none set as default
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 3a4d74317..b0389fc3f 100644
--- a/src/firejail/profile.c
+++ b/src/firejail/profile.c
@@ -367,7 +367,7 @@ int profile_check_line(char *ptr, int lineno, const char *fname) {
367 return 0; 367 return 0;
368 } 368 }
369 else if (strcmp(ptr, "shell none") == 0) { 369 else if (strcmp(ptr, "shell none") == 0) {
370 arg_shell_none = 1; 370 fprintf(stderr, "Warning: \"shell none\" command in the profile file is done by default; the command will be deprecated\n");
371 return 0; 371 return 0;
372 } 372 }
373 else if (strcmp(ptr, "tracelog") == 0) { 373 else if (strcmp(ptr, "tracelog") == 0) {