This allows o_stream_finish() calls on child streams without closing this
parent stream. Since the stream has no error checking by default anyway,
this allows the connection stream to be used more easily.
conn->output = o_stream_create_fd(conn->fd_out,
set->output_max_size);
o_stream_set_no_error_handling(conn->output, TRUE);
+ o_stream_set_finish_via_child(conn->output, FALSE);
o_stream_set_name(conn->output, conn->name);
}
if (set->input_idle_timeout_secs != 0) {