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/sendmail.ixx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libbutl/sendmail.ixx') 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 (err), - "sendmail", - "-i", // Don't treat '.' as the end of input. - "-t", // Read recipients from headers. - std::forward (options)...); + p = process_start_callback (cmdc, + pipe.in, + 2, // No output expected so redirect to stderr. + std::forward (err), + "sendmail", + "-i", // Don't treat '.' as the end of input. + "-t", // Read recipients from headers. + std::forward (options)...); // Close the reading end of the pipe not to block on writing if sendmail // terminates before that. -- cgit v1.1