From ee6831e16a373646f9451b1ad9995131aea82001 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Tue, 6 Feb 2024 23:26:41 -0600 Subject: [PATCH] fs_openat.hpp --- src/fs_openat.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs_openat.hpp b/src/fs_openat.hpp index 477f1df6..dd87be72 100644 --- a/src/fs_openat.hpp +++ b/src/fs_openat.hpp @@ -49,7 +49,7 @@ namespace fs { int rv; - rv = ::openat(dirfd_,pathname_,flags_); + rv = ::openat(dirfd_,pathname_,flags_,mode_); return ((rv == -1) ? -errno : rv); }