]> sourceware.org Git - glibc.git/blobdiff - io/mkfifoat.c
support: Use macros for *stat wrappers
[glibc.git] / io / mkfifoat.c
index bcbea75470e1d62386dadc6004155b706246dd5d..efcbe65921fecfff6aed961a7872f15a2a93b5e7 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2017 Free Software Foundation, Inc.
+/* Copyright (C) 1991-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
@@ -13,7 +13,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 <errno.h>
 #include <fcntl.h>
@@ -37,7 +37,7 @@ mkfifoat (int fd, const char *path, mode_t mode)
     {
       /* Check FD is associated with a directory.  */
       struct stat64 st;
-      if (__fxstat64 (_STAT_VER, fd, &st) != 0)
+      if (__fstat64 (fd, &st) != 0)
        return -1;
 
       if (!S_ISDIR (st.st_mode))
This page took 0.030811 seconds and 5 git commands to generate.