Revert "Cygwin: mknod: disable creating special files on NFS"

This reverts commit d085592daa.

This reenables creating Cygwin FIFOs on NFS.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2023-08-26 15:42:33 +02:00
parent 622fb0776e
commit 46e986f0e4
1 changed files with 0 additions and 6 deletions

View File

@ -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)