aboutsummaryrefslogtreecommitdiff
path: root/libbutl/sendmail.ixx
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/sendmail.ixx
parent40426fe405dc795668351cb41bd50d8d08e5b094 (diff)
Rename process_start() and process_run() overloads
Diffstat (limited to 'libbutl/sendmail.ixx')
-rw-r--r--libbutl/sendmail.ixx16
1 files changed, 8 insertions, 8 deletions
diff --git a/libbutl/sendmail.ixx b/libbutl/sendmail.ixx
index 72d3d45..36c0530 100644
--- a/libbutl/sendmail.ixx
+++ b/libbutl/sendmail.ixx
@@ -62,14 +62,14 @@ namespace butl
fdpipe pipe (fdopen_pipe ()); // Text mode seems appropriate.
process& p (*this);
- p = process_start (cmdc,
- pipe.in,
- 2, // No output expected so redirect to stderr.
- std::forward<E> (err),
- "sendmail",
- "-i", // Don't treat '.' as the end of input.
- "-t", // Read recipients from headers.
- std::forward<O> (options)...);
+ p = process_start_callback (cmdc,
+ pipe.in,
+ 2, // No output expected so redirect to stderr.
+ std::forward<E> (err),
+ "sendmail",
+ "-i", // Don't treat '.' as the end of input.
+ "-t", // Read recipients from headers.
+ std::forward<O> (options)...);
// Close the reading end of the pipe not to block on writing if sendmail
// terminates before that.