]> sourceware.org Git - glibc.git/blobdiff - io/mkfifoat.c
support: Use macros for *stat wrappers
[glibc.git] / io / mkfifoat.c
index 409f55112c6518267cbf53bf1c9e5c6d02e39e43..efcbe65921fecfff6aed961a7872f15a2a93b5e7 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2020 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
@@ -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.031016 seconds and 5 git commands to generate.