From 7c4f5e6464a7d9a9c48b4d6773fbb348624cc32e Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 6 Jun 2017 14:05:38 +0300 Subject: Support passing environment variables to child process --- libbutl/openssl.ixx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libbutl/openssl.ixx') diff --git a/libbutl/openssl.ixx b/libbutl/openssl.ixx index 2af5029..2976659 100644 --- a/libbutl/openssl.ixx +++ b/libbutl/openssl.ixx @@ -10,20 +10,19 @@ namespace butl template inline openssl:: openssl (I&& in, O&& out, E&& err, - const P& program, + const process_env& env, const std::string& command, A&&... options) : openssl ([] (const char* [], std::size_t) {}, std::forward (in), std::forward (out), std::forward (err), - program, + env, command, std::forward (options)...) { -- cgit v1.1