aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fcopy/main.c2
-rw-r--r--src/firejail/sbox.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/fcopy/main.c b/src/fcopy/main.c
index 572e9f601..869549821 100644
--- a/src/fcopy/main.c
+++ b/src/fcopy/main.c
@@ -340,7 +340,7 @@ static char *check(const char *src) {
340 340
341errexit: 341errexit:
342 free(rsrc); 342 free(rsrc);
343 fprintf(stderr, "Error fcopy: invalid file %s\n", src); 343 fprintf(stderr, "Error fcopy: invalid ownership for file %s\n", src);
344 exit(1); 344 exit(1);
345} 345}
346 346
diff --git a/src/firejail/sbox.c b/src/firejail/sbox.c
index 4a8dd1bf7..d2c0bcc19 100644
--- a/src/firejail/sbox.c
+++ b/src/firejail/sbox.c
@@ -293,7 +293,7 @@ int sbox_run_v(unsigned filtermask, char * const arg[]) {
293 errExit("waitpid"); 293 errExit("waitpid");
294 } 294 }
295 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) { 295 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) {
296 fprintf(stderr, "Error: failed to run %s\n", arg[0]); 296 fprintf(stderr, "Error: failed to run %s, exiting...\n", arg[0]);
297 exit(1); 297 exit(1);
298 } 298 }
299 299