aboutsummaryrefslogtreecommitdiff
path: root/libbutl/openssl.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-06-06 14:05:38 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-06-07 14:08:27 +0300
commit7c4f5e6464a7d9a9c48b4d6773fbb348624cc32e (patch)
treeb8b86eba7852bd00191600e0e4696cc5a7c31e42 /libbutl/openssl.hxx
parenta32378a9aedd61c51166432ecd26a6a5dd405ebb (diff)
Support passing environment variables to child process
Diffstat (limited to 'libbutl/openssl.hxx')
-rw-r--r--libbutl/openssl.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/libbutl/openssl.hxx b/libbutl/openssl.hxx
index 2f54f93..422e033 100644
--- a/libbutl/openssl.hxx
+++ b/libbutl/openssl.hxx
@@ -88,12 +88,11 @@ namespace butl
template <typename I,
typename O,
typename E,
- typename P,
typename... A>
openssl (I&& in,
O&& out,
E&& err,
- const P& program,
+ const process_env&,
const std::string& command,
A&&... options);
@@ -103,13 +102,12 @@ namespace butl
typename I,
typename O,
typename E,
- typename P,
typename... A>
openssl (const C&,
I&& in,
O&& out,
E&& err,
- const P& program,
+ const process_env&,
const std::string& command,
A&&... options);