Commit 81df45a8 authored by Max Kellermann's avatar Max Kellermann

fs/io/File{Reader,OutputStream}: use OpenFile()

parent c1f0708a
......@@ -20,7 +20,6 @@
#include "config.h"
#include "FileOutputStream.hxx"
#include "fs/FileSystem.hxx"
#include "system/fd_util.h"
#include "util/Error.hxx"
#ifdef WIN32
......@@ -82,9 +81,9 @@ FileOutputStream::Cancel()
FileOutputStream::FileOutputStream(Path _path, Error &error)
:path(_path),
fd(open_cloexec(path.c_str(),
O_WRONLY|O_CREAT|O_TRUNC,
0666))
fd(OpenFile(path,
O_WRONLY|O_CREAT|O_TRUNC,
0666))
{
if (fd < 0)
error.FormatErrno("Failed to create %s", path.c_str());
......
......@@ -19,7 +19,7 @@
#include "config.h"
#include "FileReader.hxx"
#include "system/fd_util.h"
#include "fs/FileSystem.hxx"
#include "util/Error.hxx"
#ifdef WIN32
......@@ -64,9 +64,9 @@ FileReader::Close()
FileReader::FileReader(Path _path, Error &error)
:path(_path),
fd(open_cloexec(path.c_str(),
O_RDONLY,
0))
fd(OpenFile(path,
O_RDONLY,
0))
{
if (fd < 0)
error.FormatErrno("Failed to open %s", path.c_str());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment