* dir.cc (opendir): Write version information to __d_dirent->d_version.

This commit is contained in:
Corinna Vinschen
2001-09-03 19:06:58 +00:00
parent a3e67ddfe6
commit 2321ebb2aa
2 changed files with 5 additions and 0 deletions

View File

@@ -127,6 +127,7 @@ opendir (const char *dirname)
goto failed;
}
strcpy (dir->__d_dirname, real_dirname.get_win32 ());
dir->__d_dirent->d_version = __DIRENT_VERSION;
dir->__d_dirent->d_fd = open (dir->__d_dirname, O_RDONLY | O_DIROPEN);
/* FindFirstFile doesn't seem to like duplicate /'s. */
len = strlen (dir->__d_dirname);