aboutsummaryrefslogtreecommitdiff
path: root/bpkg/utility.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-02-12 22:26:23 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-02-12 22:26:23 +0300
commit0ec9d58a8f0cf87438209b7d898b4db5ebdc1657 (patch)
tree989f339b0233b3ae1f67c13493f6b4496615538a /bpkg/utility.cxx
parentc879b0c68235711212877fb8c5b214251bab652e (diff)
Adapt to renaming butl::fdnull() to fdopen_null()
Diffstat (limited to 'bpkg/utility.cxx')
-rw-r--r--bpkg/utility.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx
index 29b0853..5ec8159 100644
--- a/bpkg/utility.cxx
+++ b/bpkg/utility.cxx
@@ -293,11 +293,11 @@ namespace bpkg
}
auto_fd
- open_dev_null ()
+ open_null ()
{
try
{
- return fdnull ();
+ return fdopen_null ();
}
catch (const io_error& e)
{