aboutsummaryrefslogtreecommitdiff
path: root/libbutl/openssl.txx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-07-27 18:00:16 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-07-27 18:00:16 +0300
commit822059e4e69547f8e97a1cd219912f55826b0414 (patch)
treedc99f504046fb96b5cc3b1189c3d4107c03f96b7 /libbutl/openssl.txx
parent40426fe405dc795668351cb41bd50d8d08e5b094 (diff)
Rename process_start() and process_run() overloads
Diffstat (limited to 'libbutl/openssl.txx')
-rw-r--r--libbutl/openssl.txx18
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.
}