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:
authorCorinna Vinschen <corinna@vinschen.de>2004-06-17 19:25:09 +0400
committerCorinna Vinschen <corinna@vinschen.de>2004-06-17 19:25:09 +0400
commit456afc5dd5baf49f093a8b8f111c992419aa2800 (patch)
treeeb5d4f9143e45c1409049139be72130a18d89ba8
parentbd0e9c7aa613edfdc3146014fb73c38df4748659 (diff)
* fhandler.cc (fhandler_base::open): Remove 9x specific code.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/fhandler.cc9
2 files changed, 4 insertions, 9 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 715b31ff4..d0a9167e7 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2004-06-17 Corinna Vinschen <corinna@vinschen.de>
+
+ * fhandler.cc (fhandler_base::open): Remove 9x specific code.
+
2004-06-17 Pierre Humblet <pierre.humblet@ieee.org>
* fhandler.cc (fhandler_base::open_9x): Do not check for null name.
diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc
index 1ea719405..57a3c4712 100644
--- a/winsup/cygwin/fhandler.cc
+++ b/winsup/cygwin/fhandler.cc
@@ -632,15 +632,6 @@ fhandler_base::open (int flags, mode_t mode)
create_disposition, create_options, NULL, 0);
if (!NT_SUCCESS (status))
{
- if (!wincap.can_open_directories () && pc.isdir ())
- {
- if (flags & (O_CREAT | O_EXCL) == (O_CREAT | O_EXCL))
- set_errno (EEXIST);
- else if (flags & (O_WRONLY | O_RDWR))
- set_errno (EISDIR);
- else
- nohandle (true);
- }
__seterrno_from_win_error (RtlNtStatusToDosError (status));
if (!nohandle ())
goto done;