https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=46e986f0e470939697f73a389e5e043a0a99425c

commit 46e986f0e470939697f73a389e5e043a0a99425c
Author:     Corinna Vinschen <[email protected]>
AuthorDate: Sat Aug 26 15:42:33 2023 +0200
Commit:     Corinna Vinschen <[email protected]>
CommitDate: Mon Sep 4 10:41:06 2023 +0200

    Revert "Cygwin: mknod: disable creating special files on NFS"
    
    This reverts commit d085592daa5f89ccc9f5b86b2ca26199e7516d61.
    
    This reenables creating Cygwin FIFOs on NFS.
    
    Signed-off-by: Corinna Vinschen <[email protected]>

Diff:
---
 winsup/cygwin/syscalls.cc | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index 52b9c9a8be91..e4b3dd2f3c62 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -3294,12 +3294,6 @@ mknod (const char *path, mode_t mode, dev_t dev)
          __leave;
        }
 
-      if (w32path.fs_is_nfs ())
-       {
-         set_errno (EPERM);
-         __leave;
-       }
-
       return mknod_worker (w32path, mode, major, minor);
     }
   __except (EFAULT)

Reply via email to