diff options
Diffstat (limited to 'libbutl/openssl.txx')
-rw-r--r-- | libbutl/openssl.txx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libbutl/openssl.txx b/libbutl/openssl.txx index 0a1788f..dd8a470 100644 --- a/libbutl/openssl.txx +++ b/libbutl/openssl.txx @@ -38,15 +38,15 @@ namespace butl io_data out_data; process& p (*this); - p = process_start (cmdc, - map_in (std::forward<I> (in), in_data), - map_out (std::forward<O> (out), out_data), - std::forward<E> (err), - env, - command, - in_data.options, - out_data.options, - std::forward<A> (options)...); + p = process_start_callback (cmdc, + map_in (std::forward<I> (in), in_data), + map_out (std::forward<O> (out), out_data), + std::forward<E> (err), + env, + command, + in_data.options, + out_data.options, + std::forward<A> (options)...); // Note: leaving this scope closes any open ends of the pipes in io_data. } |