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>2005-12-05 23:30:40 +0300
committerChristopher Faylor <me@cgf.cx>2005-12-05 23:30:40 +0300
commit4535b5961fc6055c9c59838b9fbcff20a71744b9 (patch)
tree48f9f7450be9f1d0dd652dffec9440cbad7ac73c /winsup/cygwin/dir.cc
parent09b0109620d0a6f1122844868ad30d3e66d11e94 (diff)
revert accidental checkin
Diffstat (limited to 'winsup/cygwin/dir.cc')
-rw-r--r--winsup/cygwin/dir.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/winsup/cygwin/dir.cc b/winsup/cygwin/dir.cc
index 121b5a4a9..6faddf37b 100644
--- a/winsup/cygwin/dir.cc
+++ b/winsup/cygwin/dir.cc
@@ -99,9 +99,6 @@ readdir_worker (DIR *dir, dirent *de)
}
if (!res)
-#if 1
- de->d_ino = 0;
-#else
{
/* Compute d_ino by combining filename hash with the directory hash
(which was stored in dir->__d_dirhash when opendir was called). */
@@ -139,7 +136,6 @@ readdir_worker (DIR *dir, dirent *de)
}
de->__ino32 = de->d_ino; // for legacy applications
}
-#endif
return res;
}