From 4dc782978d899f83d506f75ce22a5bd72d7296a5 Mon Sep 17 00:00:00 2001 From: ocean Date: Tue, 22 Nov 2005 09:42:09 +0000 Subject: * win32/win32.c (winnt_stat): set mapped errno instead of ENOENT. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ win32/win32.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b2018800ce..8dd50dc8f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Nov 22 18:36:11 2005 Hirokazu Yamamoto + + * win32/win32.c (winnt_stat): set mapped errno instead of ENOENT. + Tue Nov 22 14:46:57 2005 NAKAMURA Usaku * file.c (rb_file_s_basename): skip slashes just after UNC top slashes. diff --git a/win32/win32.c b/win32/win32.c index 3be9290d9f..5ec3aea4af 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2918,7 +2918,7 @@ winnt_stat(const char *path, struct stat *st) // Because GetDriveType returns 1 for network shares. (Win98 returns 4) DWORD attr = GetFileAttributes(path); if (attr == -1) { - errno = ENOENT; + errno = map_errno(GetLastError()); return -1; } st->st_mode = fileattr_to_unixmode(attr, path); -- cgit v1.2.3