Commit 5db29013 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Revert to using stderr for now

We need to veirfy this apparently innocuous change does not have any
side effects.
parent 92b75850
......@@ -769,7 +769,7 @@ main(int argc, char * const *argv)
if (Cn_arg == n_arg)
AZ(rmdir(Cn_arg));
AZ(VSB_finish(cli->sb));
printf("%s\n", VSB_data(cli->sb));
fprintf(stderr, "%s\n", VSB_data(cli->sb));
exit(cli->result == CLIS_OK ? 0 : 2);
}
cli_check(cli);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment