src/dired.c (read_dirent): Correct the "MSDOS hacks" hack: the
special code for errno = ENOENT or EACCES is needed for WINDOWSNT,
not for MSDOS.
+2015-01-31 Eli Zaretskii <eliz@gnu.org>
+
+ * dired.c (read_dirent): Correct the "MSDOS hacks" hack: the
+ special code for errno = ENOENT or EACCES is needed for WINDOWSNT,
+ not for MSDOS.
+
2015-01-31 Paul Eggert <eggert@cs.ucla.edu>
Simplify read_dirent's MSDOS hacks
return dp;
if (! (errno == EAGAIN || errno == EINTR))
{
-#ifdef MSDOS
+#ifdef WINDOWSNT
/* The MS-Windows implementation of 'opendir' doesn't
actually open a directory until the first call to
'readdir'. If 'readdir' fails to open the directory, it