aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-10-05 19:02:33 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-10-05 19:20:12 -0300
commit5c39051c2b07d6f4854eca69c37f95066d9fb10f (patch)
treec924ec21347ecea090d5a56865d93eb9c6db7237 /src
parentMerge pull request #4585 from smitsohu/euid (diff)
downloadfirejail-5c39051c2b07d6f4854eca69c37f95066d9fb10f.tar.gz
firejail-5c39051c2b07d6f4854eca69c37f95066d9fb10f.tar.zst
firejail-5c39051c2b07d6f4854eca69c37f95066d9fb10f.zip
build_profile.c: fix typo of "begins"
Added on commit 9af2c1472 ("Better debug handling.").
Diffstat (limited to 'src')
-rw-r--r--src/fbuilder/build_profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fbuilder/build_profile.c b/src/fbuilder/build_profile.c
index 0b9a99739..c945d7253 100644
--- a/src/fbuilder/build_profile.c
+++ b/src/fbuilder/build_profile.c
@@ -92,7 +92,7 @@ void build_profile(int argc, char **argv, int index, FILE *fp) {
92 92
93 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) { 93 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
94 if (fp == stdout) 94 if (fp == stdout)
95 printf("--- Built profile beings after this line ---\n"); 95 printf("--- Built profile begins after this line ---\n");
96 fprintf(fp, "# Save this file as \"application.profile\" (change \"application\" with the\n"); 96 fprintf(fp, "# Save this file as \"application.profile\" (change \"application\" with the\n");
97 fprintf(fp, "# program name) in ~/.config/firejail directory. Firejail will find it\n"); 97 fprintf(fp, "# program name) in ~/.config/firejail directory. Firejail will find it\n");
98 fprintf(fp, "# automatically every time you sandbox your application.\n#\n"); 98 fprintf(fp, "# automatically every time you sandbox your application.\n#\n");