Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2023-08-26 16:42:33 +0300
committerCorinna Vinschen <corinna@vinschen.de>2023-09-04 11:41:06 +0300
commit46e986f0e470939697f73a389e5e043a0a99425c (patch)
tree19f8e6c72024d0e307176be5e9504bf6339a2ab3 /winsup
parent622fb0776ea333dd708ff312f08ec98311138fbe (diff)
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 <corinna@vinschen.de>
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/syscalls.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index 52b9c9a8b..e4b3dd2f3 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)