]> sourceware.org Git - glibc.git/blobdiff - io/openat64_2.c
support: Use macros for *stat wrappers
[glibc.git] / io / openat64_2.c
index 6cfea6a9aacec49fbbd29a700b52061111f77163..bace1c3b65a757c63bbe66710bb00e31c4dc89a2 100644 (file)
@@ -1,5 +1,5 @@
 /* _FORTIFY_SOURCE wrapper for openat64.
-   Copyright (C) 2013-2014 Free Software Foundation, Inc.
+   Copyright (C) 2013-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <fcntl.h>
 #include <stdio.h>
@@ -22,8 +22,8 @@
 int
 __openat64_2 (int fd, const char *file, int oflag)
 {
-  if (oflag & O_CREAT)
-    __fortify_fail ("invalid openat64 call: O_CREAT without mode");
+  if (__OPEN_NEEDS_MODE (oflag))
+    __fortify_fail ("invalid openat64 call: O_CREAT or O_TMPFILE without mode");
 
   return __openat64 (fd, file, oflag);
 }
This page took 0.02491 seconds and 5 git commands to generate.