aboutsummaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2024-03-19 16:22:40 +0100
committerCorinna Vinschen <corinna@vinschen.de>2024-03-19 16:22:40 +0100
commitd06113bf8b6151fa5ac7ababe28a8cfc48c1406a (patch)
tree0a5ba2cb5069e819518a788d2ed438388b9226bb /winsup
parentbfe2790e7bc4400019a765bb9d0b7545a05ce447 (diff)
downloadnewlib-d06113bf8b6151fa5ac7ababe28a8cfc48c1406a.zip
newlib-d06113bf8b6151fa5ac7ababe28a8cfc48c1406a.tar.gz
newlib-d06113bf8b6151fa5ac7ababe28a8cfc48c1406a.tar.bz2
Cygwin: readdir(3): stop support for pre-Cygwin 1.5.0 apps
We're filling dirent::__d_internal1 with the inode number to support apps built under Cygwin 1.3 and earlier. This doesn't make sense anymore. Drop this to free up __d_internal1 for other TBD use. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/dir.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/winsup/cygwin/dir.cc b/winsup/cygwin/dir.cc
index be99941..c30ed74 100644
--- a/winsup/cygwin/dir.cc
+++ b/winsup/cygwin/dir.cc
@@ -163,9 +163,6 @@ readdir_worker (DIR *dir, dirent *de)
}
}
}
- /* This fills out the old 32 bit d_ino field for old applications,
- build under Cygwin before 1.5.x. */
- de->__d_internal1 = de->d_ino;
}
__except (NO_ERROR)
{