aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/join.c
diff options
context:
space:
mode:
authorLibravatar startx2017 <vradu.startx@yandex.com>2017-12-14 19:15:33 -0500
committerLibravatar startx2017 <vradu.startx@yandex.com>2017-12-14 19:15:33 -0500
commitc59a19848dd37ac12bf024ba0cc295d3338116ae (patch)
tree12f6a8d9487f6cd9cb94ab348e4226b84c31a737 /src/firejail/join.c
parentfix RELNOTES (diff)
downloadfirejail-c59a19848dd37ac12bf024ba0cc295d3338116ae.tar.gz
firejail-c59a19848dd37ac12bf024ba0cc295d3338116ae.tar.zst
firejail-c59a19848dd37ac12bf024ba0cc295d3338116ae.zip
redirect output messages to stderr
Diffstat (limited to 'src/firejail/join.c')
-rw-r--r--src/firejail/join.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/firejail/join.c b/src/firejail/join.c
index 4ce690737..e255161da 100644
--- a/src/firejail/join.c
+++ b/src/firejail/join.c
@@ -222,8 +222,7 @@ void join(pid_t pid, int argc, char **argv, int index) {
222 pid_t child; 222 pid_t child;
223 if (find_child(pid, &child) == 0) { 223 if (find_child(pid, &child) == 0) {
224 pid = child; 224 pid = child;
225 if (!arg_quiet) 225 fmessage("Switching to pid %u, the first child process inside the sandbox\n", (unsigned) pid);
226 printf("Switching to pid %u, the first child process inside the sandbox\n", (unsigned) pid);
227 } 226 }
228 } 227 }
229 free(comm); 228 free(comm);