From 590f450aa9b3fe665bc6824ebde118b18f79c71b Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Mon, 8 Jun 2009 15:22:52 +0000 Subject: [PATCH] * path.cc (symlink_info::check): Return with error set to ENOENT if STATUS_NO_MEDIA_IN_DEVICE is returned. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/path.cc | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 17b387b70..4957bbafe 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2009-06-08 Corinna Vinschen + + * path.cc (symlink_info::check): Return with error set to ENOENT if + STATUS_NO_MEDIA_IN_DEVICE is returned. + 2009-06-07 Christopher Faylor * cygheap.h (mini_cygheap): New struct. diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index 63850d394..7477ac5c9 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -2268,7 +2268,8 @@ symlink_info::check (char *path, const suffix_info *suffixes, unsigned opt, error in get_nt_native_path. Both status codes are deliberately not tested here unless proved necessary. */ if (status == STATUS_OBJECT_PATH_NOT_FOUND - || status == STATUS_OBJECT_NAME_INVALID) + || status == STATUS_OBJECT_NAME_INVALID + || status == STATUS_NO_MEDIA_IN_DEVICE) { set_error (ENOENT); goto file_not_symlink;