aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent/machine.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-02-12 22:30:22 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-02-12 22:30:22 +0300
commit99e984c8d42d070b83ea27bd10dee8f195b5149b (patch)
treea673fa26d01c0f16e5df50002da4e49082a227cc /bbot/agent/machine.cxx
parent7d06c193ad79cec3d810be1811929cacc5ad108e (diff)
Adapt to renaming butl::fdnull() to fdopen_null()
Diffstat (limited to 'bbot/agent/machine.cxx')
-rw-r--r--bbot/agent/machine.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bbot/agent/machine.cxx b/bbot/agent/machine.cxx
index 9b205cc..41d124c 100644
--- a/bbot/agent/machine.cxx
+++ b/bbot/agent/machine.cxx
@@ -36,7 +36,7 @@ namespace bbot
{
string addr (iface_addr (br));
- auto_fd fdn (ignore_errors ? fdnull () : nullfd);
+ auto_fd fdn (ignore_errors ? fdopen_null () : nullfd);
int ofd (ignore_errors ? fdn.get () : 2);
process_exit::code_type e;