aboutsummaryrefslogtreecommitdiff
path: root/libbutl/openssl.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/openssl.ixx')
-rw-r--r--libbutl/openssl.ixx5
1 files changed, 2 insertions, 3 deletions
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 <typename I,
typename O,
typename E,
- typename P,
typename... A>
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<I> (in),
std::forward<O> (out),
std::forward<E> (err),
- program,
+ env,
command,
std::forward<A> (options)...)
{