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
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-07-20 20:01:39 +0400
committerChristopher Faylor <me@cgf.cx>2004-07-20 20:01:39 +0400
commit325965583fa01779f930004fbcd1dc6a4701e8a1 (patch)
tree2febd83a9dee4d7d7935ef98521ca83e2a5edcb9
parent894c67771114c898c0306367e46ce4eba3f40141 (diff)
revert erroneous checkin
-rw-r--r--winsup/cygwin/syscalls.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index 27b68454a..81688fd54 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -1939,9 +1939,10 @@ mknod (const char *_path, mode_t mode, __dev16_t dev)
}
extern "C" int
-mkfifo (const char *path, mode_t mode)
+mkfifo (const char *_path, mode_t mode)
{
- return mknod32 (path, (mode & ~S_IFMT) | S_IFIFO, 0);
+ set_errno (ENOSYS); // FIXME
+ return -1;
}
/* seteuid: standards? */