From 822059e4e69547f8e97a1cd219912f55826b0414 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 27 Jul 2017 18:00:16 +0300 Subject: Rename process_start() and process_run() overloads --- libbutl/openssl.txx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'libbutl/openssl.txx') 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 (in), in_data), - map_out (std::forward (out), out_data), - std::forward (err), - env, - command, - in_data.options, - out_data.options, - std::forward (options)...); + p = process_start_callback (cmdc, + map_in (std::forward (in), in_data), + map_out (std::forward (out), out_data), + std::forward (err), + env, + command, + in_data.options, + out_data.options, + std::forward (options)...); // Note: leaving this scope closes any open ends of the pipes in io_data. } -- cgit v1.1