revert accidental checkin

This commit is contained in:
Christopher Faylor 2005-12-05 20:30:40 +00:00
parent 09b0109620
commit 4535b5961f

View File

@ -99,9 +99,6 @@ readdir_worker (DIR *dir, dirent *de)
} }
if (!res) if (!res)
#if 1
de->d_ino = 0;
#else
{ {
/* Compute d_ino by combining filename hash with the directory hash /* Compute d_ino by combining filename hash with the directory hash
(which was stored in dir->__d_dirhash when opendir was called). */ (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 de->__ino32 = de->d_ino; // for legacy applications
} }
#endif
return res; return res;
} }